1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Prepare versions for RC1

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8121 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2007-11-09 20:02:29 +00:00
parent b318134c99
commit 5c8beba9dc
11 changed files with 21 additions and 21 deletions

View file

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

View file

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

View file

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

View file

@ -1,8 +1,8 @@
module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 1
MINOR = 13
TINY = 5
MINOR = 99
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end

View file

@ -172,7 +172,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.4.4' + PKG_BUILD)
s.add_dependency('activesupport', '= 1.99.0' + PKG_BUILD)
s.files.delete "test/fixtures/fixture_database.sqlite"
s.files.delete "test/fixtures/fixture_database_2.sqlite"

View file

@ -1,8 +1,8 @@
module ActiveRecord
module VERSION #:nodoc:
MAJOR = 1
MINOR = 15
TINY = 5
MINOR = 99
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end

View file

@ -62,7 +62,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.4.4' + PKG_BUILD)
s.add_dependency('activesupport', '= 1.99.0' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'active_resource'

View file

@ -1,7 +1,7 @@
module ActiveResource
module VERSION #:nodoc:
MAJOR = 0
MINOR = 9
MAJOR = 1
MINOR = 99
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')

View file

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

View file

@ -312,11 +312,11 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.7.2')
s.add_dependency('activesupport', '= 1.4.4' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.15.5' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.13.5' + PKG_BUILD)
s.add_dependency('actionmailer', '= 1.3.5' + PKG_BUILD)
s.add_dependency('activeresource', '= 0.9.0' + PKG_BUILD)
s.add_dependency('activesupport', '= 1.99.0' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.99.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.99.0' + PKG_BUILD)
s.add_dependency('actionmailer', '= 1.99.0' + PKG_BUILD)
s.add_dependency('activeresource', '= 1.99.0' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false

View file

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