I am a noob, and am learning from the book Beginning Ruby on Rails by Steve Holzner. He tells me to make a controller called hello_controller, edit the controller so it says
class HelloController < ApplicationController
def there
end
end
He then tells me to create a document called there.rhtml with some simple HTML in it, and to put it in the views/hello directory. then, I launch the rails server, navigate to localhost:3000/hello/there, and the result of the HTML should appear on the page, I see:
Routing Error
No route matches [GET] "/hello/there"
Try running rake routes for more information on available routes.
.rhtmlfor your views you're on an ancient version of Rails (you know, maybe two years ago, or even longer!! :-). Start with a book written for Rails 3.1 or higher -- a great deal has changed. – Tom Harrison Jr Mar 22 '12 at 22:09