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
Made ready to push RC2

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2684 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
dhh (author)
Tue Oct 18 23:24:12 -0700 2005
commit  83dc37b91057cc96f35c0b55b6e79a76072b2ab5
tree    96fccd484e403890e0dcb5e35688210e4723d933
parent  328ef3feaad4c110a7277e3432e9203c7fbbb9e2
...
53
54
55
56
 
57
58
59
...
53
54
55
 
56
57
58
59
0
@@ -53,7 +53,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.10.0' + PKG_BUILD)
0
+ s.add_dependency('actionpack', '= 1.10.1' + PKG_BUILD)
0
 
0
   s.has_rdoc = true
0
   s.requirements << 'none'
...
 
 
1
2
3
4
 
5
6
7
...
1
2
3
4
5
6
7
8
9
10
0
@@ -1,7 +1,10 @@
0
+*1.10.1* (October 19th, 2005)
0
+
0
 * Update error trace templates [Nicholas Seckar]
0
 
0
 * Stop showing generated routing code in application traces [Nicholas Seckar]
0
 
0
+
0
 *1.10.0* (October 16th, 2005)
0
 
0
 * Make string-keys locals assigns optional. Add documentation describing depreciated state [skaes@web.de]
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module ActionPack
0
   module Version #:nodoc:
0
     MAJOR = 1
0
     MINOR = 10
0
- TINY = 0
0
+ TINY = 1
0
     
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
63
64
65
66
67
 
 
68
69
70
...
63
64
65
 
 
66
67
68
69
70
0
@@ -63,8 +63,8 @@ spec = Gem::Specification.new do |s|
0
   s.rubyforge_project = "aws"
0
   s.homepage = "http://www.rubyonrails.org"
0
 
0
- s.add_dependency('actionpack', '= 1.10.0' + PKG_BUILD)
0
- s.add_dependency('activerecord', '= 1.12.0' + PKG_BUILD)
0
+ s.add_dependency('actionpack', '= 1.10.1' + PKG_BUILD)
0
+ s.add_dependency('activerecord', '= 1.12.1' + PKG_BUILD)
0
   s.add_dependency('activesupport', '= 1.2.0' + PKG_BUILD)
0
 
0
   s.has_rdoc = true
...
1
 
2
3
4
...
6
7
8
 
9
10
11
...
 
1
2
3
4
...
6
7
8
9
10
11
12
0
@@ -1,4 +1,4 @@
0
-*1.12.1*
0
+*1.12.1* (October 19th, 2005)
0
 
0
 * Always parenthesize :conditions options so they may be safely combined with STI and constraints.
0
 
0
@@ -6,6 +6,7 @@
0
 
0
 * Added support for using limits in eager loads that involve has_many and has_and_belongs_to_many associations
0
 
0
+
0
 *1.12.0* (October 16th, 2005)
0
 
0
 * Update/clean up documentation (rdoc)
...
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 = 12
0
- TINY = 0
0
+ TINY = 1
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
 
 
1
2
 
 
3
4
5
...
1
2
3
4
5
6
7
8
9
0
@@ -1,5 +1,9 @@
0
+*0.14.1* (October 19th, 2005)
0
+
0
 * Remove trailing '/' from RAILS_ROOT [Nicholas Seckar]
0
 
0
+* Upgraded to Active Record 1.12.1 and Action Pack 1.10.1
0
+
0
 
0
 *0.14.0* (October 16th, 2005)
0
 
...
274
275
276
277
278
 
 
279
280
281
...
274
275
276
 
 
277
278
279
280
281
0
@@ -274,8 +274,8 @@ spec = Gem::Specification.new do |s|
0
 
0
   s.add_dependency('rake', '>= 0.6.2')
0
   s.add_dependency('activesupport', '= 1.2.0' + PKG_BUILD)
0
- s.add_dependency('activerecord', '= 1.12.0' + PKG_BUILD)
0
- s.add_dependency('actionpack', '= 1.10.0' + PKG_BUILD)
0
+ s.add_dependency('activerecord', '= 1.12.1' + PKG_BUILD)
0
+ s.add_dependency('actionpack', '= 1.10.1' + PKG_BUILD)
0
   s.add_dependency('actionmailer', '= 1.1.0' + PKG_BUILD)
0
   s.add_dependency('actionwebservice', '= 0.9.0' + PKG_BUILD)
0
 

Comments

    No one has commented yet.