diff options
author | Jamis Buck <jamis@37signals.com> | 2005-09-02 10:04:15 +0000 |
---|---|---|
committer | Jamis Buck <jamis@37signals.com> | 2005-09-02 10:04:15 +0000 |
commit | 14b8fa308e5d415d5b2456fc1e0993bb7cae69a1 (patch) | |
tree | 24c9570e72787c8f1bfb283e95aad30916927e7d /railties | |
parent | 6c44d35268d66374c5e2f0337183d5255c499a3c (diff) | |
download | rails-14b8fa308e5d415d5b2456fc1e0993bb7cae69a1.tar.gz rails-14b8fa308e5d415d5b2456fc1e0993bb7cae69a1.tar.bz2 rails-14b8fa308e5d415d5b2456fc1e0993bb7cae69a1.zip |
Corrected project-local generator location in scripts.rb #2010 [Michael Schuerig]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2099 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r-- | railties/CHANGELOG | 2 | ||||
-rw-r--r-- | railties/lib/rails_generator/scripts.rb | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 16267cff66..6ae02fcb37 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Corrected project-local generator location in scripts.rb #2010 [Michael Schuerig] + * Don't require the environment just to clear the logs #2093 [Scott Barron] * Make the default rakefile read *.rake files from config/tasks (for easy extension of the rakefile by e.g. generators) diff --git a/railties/lib/rails_generator/scripts.rb b/railties/lib/rails_generator/scripts.rb index f0b6b6f1ff..bbec46222e 100644 --- a/railties/lib/rails_generator/scripts.rb +++ b/railties/lib/rails_generator/scripts.rb @@ -59,7 +59,7 @@ end_blurb if Object.const_defined?(:RAILS_ROOT) usage << <<end_blurb - or to #{File.expand_path(RAILS_ROOT)}/script/generators/login + or to #{File.expand_path(RAILS_ROOT)}/generators/login to use with this app only. end_blurb end |