diff options
author | Pratik Naik <pratiknaik@gmail.com> | 2009-07-30 17:49:05 +0100 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2009-07-30 17:49:48 +0100 |
commit | 83537bf09010a56510927939f3ea31d30f612a25 (patch) | |
tree | bae9b15d537e1690cae93d63a006c07daf324008 /railties/lib | |
parent | 61d995f7ed94f0da38ac4c24bc8c964047352d01 (diff) | |
download | rails-83537bf09010a56510927939f3ea31d30f612a25.tar.gz rails-83537bf09010a56510927939f3ea31d30f612a25.tar.bz2 rails-83537bf09010a56510927939f3ea31d30f612a25.zip |
Generator config should be commented by default
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/generators/rails/app/templates/config/environment.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/railties/lib/generators/rails/app/templates/config/environment.rb b/railties/lib/generators/rails/app/templates/config/environment.rb index 94c90475c6..adb3a3060a 100644 --- a/railties/lib/generators/rails/app/templates/config/environment.rb +++ b/railties/lib/generators/rails/app/templates/config/environment.rb @@ -45,9 +45,9 @@ Rails::Initializer.run do |config| # Configure generators values. Many other options are available, be sure to # check the documentation. - config.generators do |g| - g.orm :active_record - g.template_engine :erb - g.test_framework :test_unit, :fixture => true - end + # config.generators do |g| + # g.orm :active_record + # g.template_engine :erb + # g.test_framework :test_unit, :fixture => true + # end end |