public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Made ready for release of 0.9.4

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@439 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
dhh (author)
Sun Jan 16 17:13:15 -0800 2005
commit  ddcc400293f0857d48b0fec9a5ec8ac70f9043c5
tree    abecece1bb0ba5a3d8a2e6a138bab65a61445b65
parent  9577f0f57c6ad60e82d1ec07d528186918c4a66e
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*0.6* (January 17th, 2005)
0
 
0
 * Fixed that bcc and cc should be settable through @bcc and @cc -- not just @headers["Bcc"] and @headers["Cc"] #453 [Eric Hodel]
0
 
...
8
9
10
11
 
12
13
14
...
8
9
10
 
11
12
13
14
0
@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
0
 
0
 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
0
 PKG_NAME = 'actionmailer'
0
-PKG_VERSION = '0.5.0' + PKG_BUILD
0
+PKG_VERSION = '0.6.0' + PKG_BUILD
0
 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
0
 
0
 desc "Default Task"
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*1.3.0* (January 17th, 2005)
0
 
0
 * Added an extensive caching module that offers three levels of granularity (page, action, fragment) and a variety of stores.
0
   Read more in ActionController::Caching.
...
8
9
10
11
 
12
13
14
...
8
9
10
 
11
12
13
14
0
@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
0
 
0
 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
0
 PKG_NAME = 'actionpack'
0
-PKG_VERSION = '1.2.0' + PKG_BUILD
0
+PKG_VERSION = '1.3.0' + PKG_BUILD
0
 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
0
 
0
 desc "Default Task"
...
41
42
43
 
44
45
46
...
41
42
43
44
45
46
47
0
@@ -41,6 +41,7 @@ files = %w-
0
  action_controller/cgi_ext/cgi_ext.rb
0
  action_controller/cgi_ext/cgi_methods.rb
0
  action_controller/cgi_ext/cookie_performance_fix.rb
0
+ action_controller/caching.rb
0
  action_controller/cgi_process.rb
0
  action_controller/cookies.rb
0
  action_controller/dependencies.rb
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*1.5.0* (January 17th, 2005)
0
 
0
 * Fixed that unit tests for MySQL are now run as the "rails" user instead of root #455 [Eric Hodel]
0
 
...
8
9
10
11
 
12
13
14
...
8
9
10
 
11
12
13
14
0
@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
0
 
0
 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
0
 PKG_NAME = 'activerecord'
0
-PKG_VERSION = '1.4.0' + PKG_BUILD
0
+PKG_VERSION = '1.5.0' + PKG_BUILD
0
 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
0
 
0
 PKG_FILES = FileList[
...
56
57
58
 
59
60
61
...
56
57
58
59
60
61
62
0
@@ -56,6 +56,7 @@ files = %w-
0
  active_record/transactions.rb
0
  active_record/validations.rb
0
  active_record/vendor/mysql.rb
0
+ active_record/vendor/mysql411.rb
0
  active_record/vendor/simple.rb
0
 -
0
 
...
1
 
2
3
4
...
21
22
23
 
 
24
25
26
...
 
1
2
3
4
...
21
22
23
24
25
26
27
28
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*0.9.4* (January 17th, 2005)
0
 
0
 * Added that ApplicationController will catch a ControllerNotFound exception if someone attempts to access a url pointing to an unexisting controller [Tobias Luetke]
0
 
0
@@ -21,6 +21,8 @@
0
 
0
 * Removed Fancy Indexing as a default option on the WEBrick servlet as it made it harder to use various caching schemes
0
 
0
+* Upgraded to Active Record 1.5, Action Pack 1.3, Action Mailer 0.6
0
+
0
 
0
 *0.9.3* (January 4th, 2005)
0
 
...
245
246
247
248
249
250
 
 
 
251
252
253
...
245
246
247
 
 
 
248
249
250
251
252
253
0
@@ -245,9 +245,9 @@ spec = Gem::Specification.new do |s|
0
   EOF
0
 
0
   s.add_dependency('rake', '>= 0.4.15')
0
- s.add_dependency('activerecord', '>= 1.4.0')
0
- s.add_dependency('actionpack', '>= 1.2.0')
0
- s.add_dependency('actionmailer', '>= 0.5.0')
0
+ s.add_dependency('activerecord', '>= 1.5.0')
0
+ s.add_dependency('actionpack', '>= 1.3.0')
0
+ s.add_dependency('actionmailer', '>= 0.6.0')
0
 
0
   s.has_rdoc = false
0
 
...
1
2
 
3
4
...
1
2
3
4
5
0
@@ -1,3 +1,4 @@
0
 Dependencies.mechanism = :load
0
 ActionController::Base.consider_all_requests_local = true
0
+ActionController::Base.perform_caching = false
0
 BREAKPOINT_SERVER_PORT = 42531
0
\ No newline at end of file
...
1
2
 
3
...
1
2
3
4
0
@@ -1,2 +1,3 @@
0
 Dependencies.mechanism = :require
0
 ActionController::Base.consider_all_requests_local = false
0
+ActionController::Base.perform_caching = true
0
\ No newline at end of file
...
1
2
 
3
4
...
1
2
3
4
5
0
@@ -1,3 +1,4 @@
0
 Dependencies.mechanism = :require
0
 ActionController::Base.consider_all_requests_local = true
0
+ActionController::Base.perform_caching = false
0
 ActionMailer::Base.delivery_method = :test
0
\ No newline at end of file

Comments

    No one has commented yet.