These are the steps I would take to set up that app. In the terminal window:
$ rails bob $ cd bob /bob$ script/generate controller Say hello (this will set up the empty hello method in the Say controller and hello.html.erb) /bob$ script/server Open the hello.html.erb template and change the contents to <h1>Hello, World!</h1> Open a browser and navigate to http://localhost:3000/say/hello Hope this helps. On Feb 28, 11:20 am, Shelly <[email protected]> wrote: > yes, that's what I have.. > > On Feb 28, 6:36 am, Craig Demyanovich <[email protected]> wrote: > > > So you have the view template > > C:/InstantRails/rails_apps/bob/app/views/say/hello.html.erb > > > and the view template looks like > > > <h1>HELLO WORLD</h1> > > > and the controller > > > C:/InstantRails/rails_apps/bob/app/controllers/say_controller.rb > > > and the controller looks like > > > class SayController < ApplicationController > > def hello > > end > > end > > > and you're still getting an error? > > > -- > > Craig Demyanovich > > Mutually Human Softwarehttp://mutuallyhuman.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

