I am trying to run the command 'rails generate'. According to
RubyonRails.org this should show me what generators are available. When
I run the 'rails generate' command with no options it creates an
application named 'generate'.
The rails generate command uses templates to create a whole lot of
things. You can always find out what’s available by running rails
generate by itself."
In order to get the output that you're looking for, you need to type the
following on the command line from your RAILS_ROOT directory:
./script/generate -h
But you might be better instead to use Rails 3 rather than the version
you are currently using (2.x.x presumably).