Skip to content

Commit

Permalink
bumping to 2.3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Aug 16, 2011
1 parent 11dafea commit dea5a10
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion actionmailer/Rakefile
Expand Up @@ -54,7 +54,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"

s.add_dependency('actionpack', '= 2.3.12' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.13' + PKG_BUILD)

s.requirements << 'none'
s.require_path = 'lib'
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActionMailer
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 12
TINY = 13

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion actionpack/Rakefile
Expand Up @@ -78,7 +78,7 @@ spec = Gem::Specification.new do |s|

s.requirements << 'none'

s.add_dependency('activesupport', '= 2.3.12' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.13' + PKG_BUILD)
s.add_dependency('rack', '~> 1.1.0')

s.require_path = 'lib'
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 12
TINY = 13

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activerecord/Rakefile
Expand Up @@ -192,7 +192,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', '= 2.3.12' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.13' + PKG_BUILD)

s.files.delete FIXTURES_ROOT + "/fixture_database.sqlite"
s.files.delete FIXTURES_ROOT + "/fixture_database_2.sqlite"
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActiveRecord
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 12
TINY = 13

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activeresource/Rakefile
Expand Up @@ -66,7 +66,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', '= 2.3.12' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.13' + PKG_BUILD)

s.require_path = 'lib'

Expand Down
2 changes: 1 addition & 1 deletion activeresource/lib/active_resource/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActiveResource
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 12
TINY = 13

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActiveSupport
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 12
TINY = 13

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
10 changes: 5 additions & 5 deletions railties/Rakefile
Expand Up @@ -313,11 +313,11 @@ spec = Gem::Specification.new do |s|
EOF

s.add_dependency('rake', '>= 0.8.3')
s.add_dependency('activesupport', '= 2.3.12' + PKG_BUILD)
s.add_dependency('activerecord', '= 2.3.12' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.12' + PKG_BUILD)
s.add_dependency('actionmailer', '= 2.3.12' + PKG_BUILD)
s.add_dependency('activeresource', '= 2.3.12' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.13' + PKG_BUILD)
s.add_dependency('activerecord', '= 2.3.13' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.13' + PKG_BUILD)
s.add_dependency('actionmailer', '= 2.3.13' + PKG_BUILD)
s.add_dependency('activeresource', '= 2.3.13' + PKG_BUILD)

s.rdoc_options << '--exclude' << '.'

Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/version.rb
Expand Up @@ -2,7 +2,7 @@ module Rails
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 12
TINY = 13

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down

0 comments on commit dea5a10

Please sign in to comment.