I'm following along to Michael Hartl's Screencasts from railstutorial.org. I only have a tiny bit of PHP, html, and css experience under my belt, and I'm okay with bash commands, but object oriented languages are completely new to me.
Here's the problem: I have an app called sample_app. From the command line:
.../sample_app$ rails generate controller Pages home contact
Now, when I look at routes.rb:
SampleApp::Application.routes.draw do
get "pages/home"
get "pages/contact"
And when I look at pages_controller I see:
class PagesController < ApplicationController
def home
end
def contact
end
end
When I attempt to go to "localhost:3000/pages/home" I get the following error page:
Routing Error
No route matches "/pages/home"
I have a suspicion there is something else going on here, because I create a static html file in the folder Public, and could not get it to load either:
Here's my static page in Public:
<html>
<h1> TACO!</h1>
<body>
<p> testing <p>
</body>
</html>
And when I attempt to navigate to "localhost:3000/taco.html" I get the same type of error:
Routing Error
No route matches "/taco.html"
- EDIT: By the way localhost:3000 by itself does load the index.html "welcome to rails blah" page just fine..
You'd be surprised how long I have been attempting to figure this out. I have a feeling this is either a super simple fix, or something is terribly wrong. One or the other...
Just so you know: Rails 3.0.3 ruby 1.8.7 (2010-01-10 patchlevel 249) [i486-linux] gems 1.4.2
Any ideas? This very well might be a RTFM kind of deal, if so just tell me, and I will look harder...