From 08846efd6a0ab85486ba3bcdaaaae32d0ec9056f Mon Sep 17 00:00:00 2001 From: RomD Date: Sun, 7 Feb 2010 04:56:19 +0100 Subject: [PATCH] fix ambiguous example for new invocation method --- railties/guides/source/3_0_release_notes.textile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/railties/guides/source/3_0_release_notes.textile b/railties/guides/source/3_0_release_notes.textile index 1624172..73de6d4 100644 --- a/railties/guides/source/3_0_release_notes.textile +++ b/railties/guides/source/3_0_release_notes.textile @@ -39,8 +39,8 @@ h4. script/* replaced by script/rails The new script/rails replaces all the scripts that used to be in the script directory. You do not run script/rails 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: -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 Run rails --help for a list of all the options. -- 1.6.3.3