public
Fork of rails/rails
Description: Ruby on Rails - forked for implementing I18n patch
Homepage: http://rubyonrails.org
Clone URL: git://github.com/svenfuchs/rails.git
Prep for RC2

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8233 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
dhh (author)
Wed Nov 28 16:27:53 -0800 2007
commit  54a75de3ecabf5dd07a60c27d21fc4e0671904c0
tree    db13dd66f171915887fd9483d041b3101be810e4
parent  3a3e7efee9443fad159dc88a670ad28f12b98438
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*2.0.0 [RC2]* (November 28th, 2007)
0
 
0
 * Update ActionMailer so it treats ActionView the same way that ActionController does. Closes #10244 [rick]
0
 
...
55
56
57
58
 
59
60
61
...
55
56
57
 
58
59
60
61
0
@@ -55,7 +55,7 @@ spec = Gem::Specification.new do |s|
0
   s.rubyforge_project = "actionmailer"
0
   s.homepage = "http://www.rubyonrails.org"
0
 
0
- s.add_dependency('actionpack', '= 1.99.0' + PKG_BUILD)
0
+ s.add_dependency('actionpack', '= 1.99.1' + PKG_BUILD)
0
 
0
   s.has_rdoc = true
0
   s.requirements << 'none'
...
31
32
33
34
 
35
36
37
...
31
32
33
 
34
35
36
37
0
@@ -31,7 +31,7 @@ module TMail #:nodoc:
0
   module VERSION #:nodoc:
0
     MAJOR = 1
0
     MINOR = 1
0
- TINY = 0
0
+ TINY = 1
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module ActionMailer
0
   module VERSION #:nodoc:
0
     MAJOR = 1
0
     MINOR = 99
0
- TINY = 0
0
+ TINY = 1
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
4
...
124
125
126
 
127
128
129
...
 
1
2
3
4
...
124
125
126
127
128
129
130
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*2.0.0 [RC2]* (November 28th, 2007)
0
 
0
 * Make sure the optimisation code for routes doesn't get used if :host, :anchor or :port are provided in the hash arguments. [pager, Koz] #10292
0
 
0
@@ -124,6 +124,7 @@
0
 
0
 * Only accept session ids from cookies, prevents session fixation attacks. [bradediger]
0
 
0
+
0
 *2.0.0 [Preview Release]* (September 29th, 2007) [Includes duplicates of changes from 1.12.2 - 1.13.3]
0
 
0
 * Fixed that render template did not honor exempt_from_layout #9698 [pezra]
...
76
77
78
79
 
80
81
82
...
76
77
78
 
79
80
81
82
0
@@ -76,7 +76,7 @@ spec = Gem::Specification.new do |s|
0
   s.has_rdoc = true
0
   s.requirements << 'none'
0
 
0
- s.add_dependency('activesupport', '= 1.99.0' + PKG_BUILD)
0
+ s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD)
0
 
0
   s.require_path = 'lib'
0
   s.autorequire = 'action_controller'
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module ActionPack #:nodoc:
0
   module VERSION #:nodoc:
0
     MAJOR = 1
0
     MINOR = 99
0
- TINY = 0
0
+ TINY = 1
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*2.0.0 [RC2]* (November 28th, 2007)
0
 
0
 * Foxy fixtures: support single-table inheritance. #10234 [tom]
0
 
...
172
173
174
175
 
176
177
178
...
172
173
174
 
175
176
177
178
0
@@ -172,7 +172,7 @@ spec = Gem::Specification.new do |s|
0
     s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
0
   end
0
 
0
- s.add_dependency('activesupport', '= 1.99.0' + PKG_BUILD)
0
+ s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD)
0
 
0
   s.files.delete "test/fixtures/fixture_database.sqlite"
0
   s.files.delete "test/fixtures/fixture_database_2.sqlite"
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module ActiveRecord
0
   module VERSION #:nodoc:
0
     MAJOR = 1
0
     MINOR = 99
0
- TINY = 0
0
+ TINY = 1
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
 
 
1
2
3
4
 
5
6
7
...
1
2
3
4
5
6
7
8
9
10
0
@@ -1,7 +1,10 @@
0
+*2.0.0 [RC2]* (November 28th, 2007)
0
+
0
 * Don't cache net/http object so that ActiveResource is more thread-safe. Closes #10142 [kou]
0
 
0
 * Update XML documentation examples to include explicit type attributes. Closes #9754 [hasmanyjosh]
0
 
0
+
0
 *2.0.0 [Preview Release]* (September 29th, 2007)
0
 
0
 * Added one-off declarations of mock behavior [DHH]. Example:
...
62
63
64
65
 
66
67
68
...
62
63
64
 
65
66
67
68
0
@@ -62,7 +62,7 @@ spec = Gem::Specification.new do |s|
0
     s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
0
   end
0
   
0
- s.add_dependency('activesupport', '= 1.99.0' + PKG_BUILD)
0
+ s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD)
0
 
0
   s.require_path = 'lib'
0
   s.autorequire = 'active_resource'
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module ActiveResource
0
   module VERSION #:nodoc:
0
     MAJOR = 1
0
     MINOR = 99
0
- TINY = 0
0
+ TINY = 1
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*2.0.0 [RC2]* (November 28th, 2007)
0
 
0
 * Added Array#from and Array#to that behaves just from String#from and String#to [DHH]
0
 
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module ActiveSupport
0
   module VERSION #:nodoc:
0
     MAJOR = 1
0
     MINOR = 99
0
- TINY = 0
0
+ TINY = 1
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*2.0.0 [RC2]* (November 28th, 2007)
0
 
0
 * Introduce SecretKeyGenerator for more secure session secrets than CGI::Session's pseudo-random id generator. Consider extracting to Active Support later. #10286 [Hongli Lai]
0
 
...
312
313
314
315
316
317
318
319
 
 
 
 
 
320
321
322
...
312
313
314
 
 
 
 
 
315
316
317
318
319
320
321
322
0
@@ -312,11 +312,11 @@ spec = Gem::Specification.new do |s|
0
   EOF
0
 
0
   s.add_dependency('rake', '>= 0.7.2')
0
- s.add_dependency('activesupport', '= 1.99.0' + PKG_BUILD)
0
- s.add_dependency('activerecord', '= 1.99.0' + PKG_BUILD)
0
- s.add_dependency('actionpack', '= 1.99.0' + PKG_BUILD)
0
- s.add_dependency('actionmailer', '= 1.99.0' + PKG_BUILD)
0
- s.add_dependency('activeresource', '= 1.99.0' + PKG_BUILD)
0
+ s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD)
0
+ s.add_dependency('activerecord', '= 1.99.1' + PKG_BUILD)
0
+ s.add_dependency('actionpack', '= 1.99.1' + PKG_BUILD)
0
+ s.add_dependency('actionmailer', '= 1.99.1' + PKG_BUILD)
0
+ s.add_dependency('activeresource', '= 1.99.1' + PKG_BUILD)
0
 
0
   s.rdoc_options << '--exclude' << '.'
0
   s.has_rdoc = false
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module Rails
0
   module VERSION #:nodoc:
0
     MAJOR = 1
0
     MINOR = 99
0
- TINY = 0
0
+ TINY = 1
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end

Comments

    No one has commented yet.