Skip to content

Commit

Permalink
Prep for beta2, depend on latest Bundler
Browse files Browse the repository at this point in the history
  • Loading branch information
dhh committed Apr 1, 2010
1 parent e8292ab commit d868cb4
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -2,7 +2,7 @@ path File.dirname(__FILE__)
source 'http://rubygems.org'

gem "arel", :git => "git://github.com/rails/arel.git"
gem "rails", "3.0.0.beta1"
gem "rails", "3.0.0.beta2"

gem "rake", ">= 0.8.7"
gem "mocha", ">= 0.9.8"
Expand Down
2 changes: 1 addition & 1 deletion RAILS_VERSION
@@ -1 +1 @@
3.0.0.beta1
3.0.0.beta2
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/version.rb
Expand Up @@ -3,7 +3,7 @@ module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = 0
BUILD = "beta1"
BUILD = "beta2"

STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/version.rb
Expand Up @@ -3,7 +3,7 @@ module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = 0
BUILD = "beta1"
BUILD = "beta2"

STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/version.rb
Expand Up @@ -3,7 +3,7 @@ module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = 0
BUILD = "beta1"
BUILD = "beta2"

STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/version.rb
Expand Up @@ -3,7 +3,7 @@ module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = 0
BUILD = "beta1"
BUILD = "beta2"

STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activeresource/lib/active_resource/version.rb
Expand Up @@ -3,7 +3,7 @@ module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = 0
BUILD = "beta1"
BUILD = "beta2"

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

STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion rails.gemspec
Expand Up @@ -23,5 +23,5 @@ Gem::Specification.new do |s|
s.add_dependency('activeresource', version)
s.add_dependency('actionmailer', version)
s.add_dependency('railties', version)
s.add_dependency('bundler', '>= 0.9.8')
s.add_dependency('bundler', '>= 0.9.14')
end
2 changes: 1 addition & 1 deletion railties/lib/rails/version.rb
Expand Up @@ -3,7 +3,7 @@ module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = 0
BUILD = "beta1"
BUILD = "beta2"

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

0 comments on commit d868cb4

Please sign in to comment.