aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-01-01 18:10:10 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-01-01 18:10:10 +0000
commit07989b64f47112d7e501e2114284dec322ac2c6c (patch)
treee419c95024b08be09b1ad5f15889d674710d88c4 /railties/CHANGELOG
parentcab24945634bc22b0c0c5d10b72c83eaa09f1e41 (diff)
downloadrails-07989b64f47112d7e501e2114284dec322ac2c6c.tar.gz
rails-07989b64f47112d7e501e2114284dec322ac2c6c.tar.bz2
rails-07989b64f47112d7e501e2114284dec322ac2c6c.zip
Added automated rewriting of the shebang lines on installs through the gem rails command #379 [Manfred Stienstra]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@300 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r--railties/CHANGELOG10
1 files changed, 6 insertions, 4 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index ada723b0fa..35477eed8f 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,20 +1,22 @@
*SVN*
+* Added automated rewriting of the shebang lines on installs through the gem rails command #379 [Manfred Stienstra]
+
* Fixed that generated action_mailers doesnt need to require the action_mailer since thats already done in the environment #382 [Lucas Carlson]
* Fixed dependency management to happen in a unified fashion for Active Record and Action Pack using the new Dependencies module. This means that
the environment options needs to change from:
Before in development.rb:
- ActionController::Base.reload_dependencies = true  
- ActiveRecord::Base.reload_associations     = true
+ ActionController::Base.reload_dependencies = true  
+ ActiveRecord::Base.reload_associations     = true
Now in development.rb:
Dependencies.mechanism = :load
Before in production.rb and test.rb:
- ActionController::Base.reload_dependencies = false
- ActiveRecord::Base.reload_associations     = false
+ ActionController::Base.reload_dependencies = false
+ ActiveRecord::Base.reload_associations     = false
Now in production.rb and test.rb:
Dependencies.mechanism = :require