aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
Diffstat (limited to 'railties')
-rw-r--r--railties/CHANGELOG4
-rw-r--r--railties/Rakefile6
-rw-r--r--railties/environments/development.rb1
-rw-r--r--railties/environments/production.rb1
-rw-r--r--railties/environments/test.rb1
5 files changed, 9 insertions, 4 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 98065015cb..6ece5cece4 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*0.9.4* (January 17th, 2005)
* Added that ApplicationController will catch a ControllerNotFound exception if someone attempts to access a url pointing to an unexisting controller [Tobias Luetke]
@@ -21,6 +21,8 @@
* Removed Fancy Indexing as a default option on the WEBrick servlet as it made it harder to use various caching schemes
+* Upgraded to Active Record 1.5, Action Pack 1.3, Action Mailer 0.6
+
*0.9.3* (January 4th, 2005)
diff --git a/railties/Rakefile b/railties/Rakefile
index ae82f5870c..386b78cdb2 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -245,9 +245,9 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.4.15')
- s.add_dependency('activerecord', '>= 1.4.0')
- s.add_dependency('actionpack', '>= 1.2.0')
- s.add_dependency('actionmailer', '>= 0.5.0')
+ s.add_dependency('activerecord', '>= 1.5.0')
+ s.add_dependency('actionpack', '>= 1.3.0')
+ s.add_dependency('actionmailer', '>= 0.6.0')
s.has_rdoc = false
diff --git a/railties/environments/development.rb b/railties/environments/development.rb
index 42a43d59fb..d3681e28ca 100644
--- a/railties/environments/development.rb
+++ b/railties/environments/development.rb
@@ -1,3 +1,4 @@
Dependencies.mechanism = :load
ActionController::Base.consider_all_requests_local = true
+ActionController::Base.perform_caching = false
BREAKPOINT_SERVER_PORT = 42531 \ No newline at end of file
diff --git a/railties/environments/production.rb b/railties/environments/production.rb
index 2069ebcf15..b464250bef 100644
--- a/railties/environments/production.rb
+++ b/railties/environments/production.rb
@@ -1,2 +1,3 @@
Dependencies.mechanism = :require
ActionController::Base.consider_all_requests_local = false
+ActionController::Base.perform_caching = true \ No newline at end of file
diff --git a/railties/environments/test.rb b/railties/environments/test.rb
index d4db0e9c64..8aa4c65af2 100644
--- a/railties/environments/test.rb
+++ b/railties/environments/test.rb
@@ -1,3 +1,4 @@
Dependencies.mechanism = :require
ActionController::Base.consider_all_requests_local = true
+ActionController::Base.perform_caching = false
ActionMailer::Base.delivery_method = :test \ No newline at end of file