1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

fix ambiguous example for new invocation method

Signed-off-by: José Valim <jose.valim@gmail.com>
This commit is contained in:
RomD 2010-02-07 04:56:19 +01:00 committed by José Valim
parent 345e0b274c
commit d6ae930c9c

View file

@ -39,8 +39,8 @@ h4. script/* replaced by script/rails
The new <tt>script/rails</tt> replaces all the scripts that used to be in the <tt>script</tt> directory. You do not run <tt>script/rails</tt> directly though, the +rails+ command detects it is being invoked in the root of a Rails application and runs the script for you. Intended usage is:
<shell>
rails console # => ./script/rails console
rails g scaffold post title:string # => ./script/rails generate scaffold post title:string
rails console # instead of script/console
rails g scaffold post title:string # instead of script/generate scaffold post title:string
</shell>
Run rails --help for a list of all the options.