diff options
author | Benjamin Quorning <beq@crd.dk> | 2010-07-09 15:58:58 +0200 |
---|---|---|
committer | Benjamin Quorning <beq@crd.dk> | 2010-07-13 13:00:21 +0200 |
commit | 7e075e62479a0eccad6eaf7a7c20f45347860c83 (patch) | |
tree | 20db09dc8d8f74ef1fd1aa2e7077f28c584a4dcd /railties | |
parent | 4209cb97e39c2742410f81d86e7f7c5ad310a251 (diff) | |
download | rails-7e075e62479a0eccad6eaf7a7c20f45347860c83.tar.gz rails-7e075e62479a0eccad6eaf7a7c20f45347860c83.tar.bz2 rails-7e075e62479a0eccad6eaf7a7c20f45347860c83.zip |
Fixed many references to the old config/environment.rb and Rails::Initializer
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails/generators/actions.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/generators/actions.rb b/railties/lib/rails/generators/actions.rb index a27d38e23a..2280cc1507 100644 --- a/railties/lib/rails/generators/actions.rb +++ b/railties/lib/rails/generators/actions.rb @@ -40,7 +40,7 @@ module Rails end end - # Adds an entry into config/environment.rb for the supplied gem. If env + # Adds an entry into Gemfile for the supplied gem. If env # is specified, add the gem to the given environment. # # ==== Example @@ -100,7 +100,7 @@ module Rails end end - # Adds a line inside the Initializer block for config/environment.rb. + # Adds a line inside the Application class for config/application.rb. # # If options :env is specified, the line is appended to the corresponding # file in config/environments. |