Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c548e21

Browse files
committedFeb 5, 2010
Bump git versions to 3.0.0.beta1 since we've released
1 parent a81a2a2 commit c548e21

File tree

10 files changed

+26
-26
lines changed

10 files changed

+26
-26
lines changed
 

‎Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
path File.expand_path('..', __FILE__)
22
source 'http://gemcutter.org'
33

4-
gem "rails", "3.0.0.beta"
4+
gem "rails", "3.0.0.beta1"
55

66
gem "rake", ">= 0.8.7"
77
gem "mocha", ">= 0.9.8"

‎actionmailer/actionmailer.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |s|
22
s.platform = Gem::Platform::RUBY
33
s.name = 'actionmailer'
4-
s.version = '3.0.0.beta'
4+
s.version = '3.0.0.beta1'
55
s.summary = 'Email composition, delivery, and recieval framework (part of Rails).'
66
s.description = 'Email composition, delivery, and recieval framework (part of Rails).'
77

@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
1616

1717
s.has_rdoc = true
1818

19-
s.add_dependency('actionpack', '= 3.0.0.beta')
19+
s.add_dependency('actionpack', '= 3.0.0.beta1')
2020
s.add_dependency('mail', '~> 2.1.2')
2121
s.add_dependency('text-format', '~> 1.0.0')
2222
end

‎actionpack/actionpack.gemspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |s|
22
s.platform = Gem::Platform::RUBY
33
s.name = 'actionpack'
4-
s.version = '3.0.0.beta'
4+
s.version = '3.0.0.beta1'
55
s.summary = 'Web-flow and rendering framework putting the VC in MVC (part of Rails).'
66
s.description = 'Web-flow and rendering framework putting the VC in MVC (part of Rails).'
77

@@ -16,8 +16,8 @@ Gem::Specification.new do |s|
1616

1717
s.has_rdoc = true
1818

19-
s.add_dependency('activesupport', '= 3.0.0.beta')
20-
s.add_dependency('activemodel', '= 3.0.0.beta')
19+
s.add_dependency('activesupport', '= 3.0.0.beta1')
20+
s.add_dependency('activemodel', '= 3.0.0.beta1')
2121
s.add_dependency('rack', '~> 1.1.0')
2222
s.add_dependency('rack-test', '~> 0.5.0')
2323
s.add_dependency('rack-mount', '~> 0.4.0')

‎activemodel/activemodel.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |s|
22
s.platform = Gem::Platform::RUBY
33
s.name = 'activemodel'
4-
s.version = '3.0.0.beta'
4+
s.version = '3.0.0.beta1'
55
s.summary = "A toolkit for building other modeling frameworks like ActiveRecord"
66
s.description = %q{Extracts common modeling concerns from ActiveRecord to share between similar frameworks like ActiveResource.}
77

@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
1212

1313
s.has_rdoc = true
1414

15-
s.add_dependency('activesupport', '= 3.0.0.beta')
15+
s.add_dependency('activesupport', '= 3.0.0.beta1')
1616

1717
s.require_path = 'lib'
1818
s.files = Dir["CHANGELOG", "MIT-LICENSE", "README", "lib/**/*"]

‎activerecord/activerecord.gemspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |s|
22
s.platform = Gem::Platform::RUBY
33
s.name = 'activerecord'
4-
s.version = '3.0.0.beta'
4+
s.version = '3.0.0.beta1'
55
s.summary = 'Object-relational mapper framework (part of Rails).'
66
s.description = 'Object-relational mapper framework (part of Rails).'
77

@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
1717
s.extra_rdoc_files = %w( README )
1818
s.rdoc_options.concat ['--main', 'README']
1919

20-
s.add_dependency('activesupport', '= 3.0.0.beta')
21-
s.add_dependency('activemodel', '= 3.0.0.beta')
20+
s.add_dependency('activesupport', '= 3.0.0.beta1')
21+
s.add_dependency('activemodel', '= 3.0.0.beta1')
2222
s.add_dependency('arel', '~> 0.2.1')
2323
end

‎activeresource/activeresource.gemspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |s|
22
s.platform = Gem::Platform::RUBY
33
s.name = 'activeresource'
4-
s.version = '3.0.0.beta'
4+
s.version = '3.0.0.beta1'
55
s.summary = 'REST-model framework (part of Rails).'
66
s.description = 'REST-model framework (part of Rails).'
77

@@ -17,6 +17,6 @@ Gem::Specification.new do |s|
1717
s.extra_rdoc_files = %w( README )
1818
s.rdoc_options.concat ['--main', 'README']
1919

20-
s.add_dependency('activesupport', '= 3.0.0.beta')
21-
s.add_dependency('activemodel', '= 3.0.0.beta')
20+
s.add_dependency('activesupport', '= 3.0.0.beta1')
21+
s.add_dependency('activemodel', '= 3.0.0.beta1')
2222
end

‎activesupport/activesupport.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |s|
22
s.platform = Gem::Platform::RUBY
33
s.name = 'activesupport'
4-
s.version = '3.0.0.beta'
4+
s.version = '3.0.0.beta1'
55
s.summary = 'Support and utility classes used by the Rails framework.'
66
s.description = 'Support and utility classes used by the Rails framework.'
77

‎rails.gemspec

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |s|
22
s.platform = Gem::Platform::RUBY
33
s.name = 'rails'
4-
s.version = '3.0.0.beta'
4+
s.version = '3.0.0.beta1'
55
s.summary = 'Full-stack web-application framework.'
66
s.description = 'Full-stack web-application framework.'
77

@@ -13,11 +13,11 @@ Gem::Specification.new do |s|
1313
s.files = []
1414
s.require_path = []
1515

16-
s.add_dependency('activesupport', '= 3.0.0.beta')
17-
s.add_dependency('actionpack', '= 3.0.0.beta')
18-
s.add_dependency('activerecord', '= 3.0.0.beta')
19-
s.add_dependency('activeresource', '= 3.0.0.beta')
20-
s.add_dependency('actionmailer', '= 3.0.0.beta')
21-
s.add_dependency('railties', '= 3.0.0.beta')
16+
s.add_dependency('activesupport', '= 3.0.0.beta1')
17+
s.add_dependency('actionpack', '= 3.0.0.beta1')
18+
s.add_dependency('activerecord', '= 3.0.0.beta1')
19+
s.add_dependency('activeresource', '= 3.0.0.beta1')
20+
s.add_dependency('actionmailer', '= 3.0.0.beta1')
21+
s.add_dependency('railties', '= 3.0.0.beta1')
2222
s.add_dependency('bundler', '>= 0.9.2')
2323
end

‎railties/lib/rails/tasks/documentation.rake

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace :doc do
1414
desc 'Generate documentation for the Rails framework. Specify path with PATH="/path/to/rails"'
1515
Rake::RDocTask.new("rails") { |rdoc|
1616
path = ENV['RAILS_PATH'] || 'vendor/gems/gems'
17-
version = '-3.0.0.beta' unless ENV['RAILS_PATH']
17+
version = '-3.0.0.beta1' unless ENV['RAILS_PATH']
1818
rdoc.rdoc_dir = 'doc/api'
1919
rdoc.template = "#{ENV['template']}.rb" if ENV['template']
2020
rdoc.title = "Rails Framework Documentation"

‎railties/railties.gemspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |s|
22
s.platform = Gem::Platform::RUBY
33
s.name = 'railties'
4-
s.version = '3.0.0.beta'
4+
s.version = '3.0.0.beta1'
55
s.summary = 'Controls boot-up, rake tasks and generators for the Rails framework.'
66
s.description = 'Controls boot-up, rake tasks and generators for the Rails framework.'
77

@@ -21,6 +21,6 @@ Gem::Specification.new do |s|
2121

2222
s.add_dependency('rake', '>= 0.8.3')
2323
s.add_dependency('thor', '~> 0.13')
24-
s.add_dependency('activesupport', '= 3.0.0.beta')
25-
s.add_dependency('actionpack', '= 3.0.0.beta')
24+
s.add_dependency('activesupport', '= 3.0.0.beta1')
25+
s.add_dependency('actionpack', '= 3.0.0.beta1')
2626
end

0 commit comments

Comments
 (0)
Please sign in to comment.