Update versions to match latest from stable

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3543 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2006-02-05 00:59:57 +00:00
parent 5450538563
commit 0633bb865b
11 changed files with 20 additions and 20 deletions

View File

@ -54,7 +54,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"
s.add_dependency('actionpack', '= 1.11.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.11.2' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'

View File

@ -2,7 +2,7 @@ module ActionMailer
module VERSION #:nodoc:
MAJOR = 1
MINOR = 1
TINY = 3
TINY = 5
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -62,7 +62,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
s.add_dependency('activesupport', '= 1.2.3' + PKG_BUILD)
s.add_dependency('activesupport', '= 1.2.5' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'action_controller'

View File

@ -2,7 +2,7 @@ module ActionPack
module VERSION #:nodoc:
MAJOR = 1
MINOR = 11
TINY = 0
TINY = 2
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -63,8 +63,8 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org"
s.add_dependency('actionpack', '= 1.11.0' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.13.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.11.2' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.13.2' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'

View File

@ -1,8 +1,8 @@
module ActionWebService
module VERSION
MAJOR = 0
MINOR = 9
TINY = 3
MAJOR = 1
MINOR = 0
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -106,7 +106,7 @@ spec = Gem::Specification.new do |s|
s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
end
s.add_dependency('activesupport', '= 1.2.3' + PKG_BUILD)
s.add_dependency('activesupport', '= 1.2.5' + PKG_BUILD)
s.files.delete "test/fixtures/fixture_database.sqlite"
s.files.delete "test/fixtures/fixture_database_2.sqlite"

View File

@ -2,7 +2,7 @@ module ActiveRecord
module VERSION #:nodoc:
MAJOR = 1
MINOR = 13
TINY = 0
TINY = 2
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -2,7 +2,7 @@ module ActiveSupport
module VERSION #:nodoc:
MAJOR = 1
MINOR = 2
TINY = 3
TINY = 5
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -273,11 +273,11 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.6.2')
s.add_dependency('activesupport', '= 1.2.3' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.13.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.11.0' + PKG_BUILD)
s.add_dependency('actionmailer', '= 1.1.3' + PKG_BUILD)
s.add_dependency('actionwebservice', '= 0.9.3' + PKG_BUILD)
s.add_dependency('activesupport', '= 1.2.5' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.13.2' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.11.2' + PKG_BUILD)
s.add_dependency('actionmailer', '= 1.1.5' + PKG_BUILD)
s.add_dependency('actionwebservice', '= 1.0.0' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false

View File

@ -1,8 +1,8 @@
module Rails
module VERSION #:nodoc:
MAJOR = 0
MINOR = 14
TINY = 3
MAJOR = 1
MINOR = 0
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end