diff options
author | Oscar Del Ben <info@oscardelben.com> | 2012-06-17 11:19:28 -0700 |
---|---|---|
committer | Oscar Del Ben <info@oscardelben.com> | 2012-06-17 11:19:28 -0700 |
commit | c7a7294198d141b5133e91d7246d22b27b670701 (patch) | |
tree | 2d8491244c4f3dd922321b4a65255829f623334f /guides/source | |
parent | b0da716a19d4ef937ad705d571be7dd18fbbc7bb (diff) | |
download | rails-c7a7294198d141b5133e91d7246d22b27b670701.tar.gz rails-c7a7294198d141b5133e91d7246d22b27b670701.tar.bz2 rails-c7a7294198d141b5133e91d7246d22b27b670701.zip |
Rewrite rails command section
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/initialization.textile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/initialization.textile b/guides/source/initialization.textile index 25f137cfbd..b7538df060 100644 --- a/guides/source/initialization.textile +++ b/guides/source/initialization.textile @@ -39,7 +39,7 @@ require "rails/cli" </ruby> This file will first attempt to push the +railties/lib+ directory if -present, and then require +rails/cli+. +present, and then requires +rails/cli+. h4. +railties/lib/rails/cli.rb+ @@ -129,7 +129,7 @@ exec RUBY, SCRIPT_RAILS, *ARGV if in_rails_application? This is effectively the same as running +ruby script/rails [arguments]+, where +[arguments]+ at this point in time is simply "server". TIP: If you execute +script/rails+ directly from your Rails app you will -avoid executing the code that we just described. +skip executing all the code that we've just described. h4. +script/rails+ |