Move to 3.0.0.beta

This commit is contained in:
David Heinemeier Hansson 2010-02-03 17:29:51 -08:00
parent ddb512c02b
commit 79817aa9e7
18 changed files with 33 additions and 34 deletions

View File

@ -1,7 +1,7 @@
path File.expand_path('..', __FILE__)
source :gemcutter
gem "rails", "3.0.pre"
gem "rails", "3.0.0.beta"
gem "rake", ">= 0.8.7"
gem "mocha", ">= 0.9.8"

View File

@ -38,7 +38,6 @@ Rake::GemPackageTask.new(spec) do |pkg|
end
task :install => :gem do
system %(cd rack && rake gem VERSION=1.0.2.pre && gem install rack-1.0.2.pre.gem --no-ri --no-rdoc --ignore-dependencies)
(PROJECTS - ["railties"]).each do |project|
puts "INSTALLING #{project}"
system("gem install #{project}/pkg/#{project}-#{ActionPack::VERSION::STRING}.gem --no-ri --no-rdoc")

View File

@ -3,14 +3,14 @@ Gem::Specification.new do |s|
s.name = 'actionmailer'
s.summary = "Service layer for easy email delivery and testing."
s.description = %q{Makes it trivial to test and deliver emails sent from a single service layer.}
s.version = '3.0.pre'
s.version = '3.0.0.beta'
s.author = "David Heinemeier Hansson"
s.email = "david@loudthinking.com"
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"
s.add_dependency('actionpack', '= 3.0.pre')
s.add_dependency('actionpack', '= 3.0.0.beta')
s.add_dependency('mail', '~> 2.1.2')
s.add_dependency('text-format', '~> 1.0.0')

View File

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

View File

@ -1,7 +1,7 @@
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'actionpack'
s.version = '3.0.pre'
s.version = '3.0.0.beta'
s.summary = "Web-flow and rendering framework putting the VC in MVC."
s.description = %q{Eases web-request routing, handling, and response as a half-way front, half-way page controller. Implemented with specific emphasis on enabling easy unit/integration testing that doesn't require a browser.} #'
@ -14,8 +14,8 @@ Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
s.add_dependency('activesupport', '= 3.0.pre')
s.add_dependency('activemodel', '= 3.0.pre')
s.add_dependency('activesupport', '= 3.0.0.beta')
s.add_dependency('activemodel', '= 3.0.0.beta')
s.add_dependency('rack', '~> 1.1.0')
s.add_dependency('rack-test', '~> 0.5.0')
s.add_dependency('rack-mount', '~> 0.4.0')

View File

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

View File

@ -1,7 +1,7 @@
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'activemodel'
s.version = '3.0.pre'
s.version = '3.0.0.beta'
s.summary = "A toolkit for building other modeling frameworks like ActiveRecord"
s.description = %q{Extracts common modeling concerns from ActiveRecord to share between similar frameworks like ActiveResource.}
@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.has_rdoc = true
s.add_dependency('activesupport', '= 3.0.pre')
s.add_dependency('activesupport', '= 3.0.0.beta')
s.require_path = 'lib'
s.files = Dir["CHANGELOG", "MIT-LICENSE", "README", "lib/**/*"]

View File

@ -2,7 +2,7 @@ module ActiveModel
module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = "pre"
TINY = "0.beta"
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -1,14 +1,14 @@
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'activerecord'
s.version = '3.0.pre'
s.version = '3.0.0.beta'
s.summary = "Implements the ActiveRecord pattern for ORM."
s.description = %q{Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM. It ties database tables and classes together for business objects, like Customer or Subscription, that can find, save, and destroy themselves without resorting to manual SQL.}
s.files = Dir['CHANGELOG', 'README', 'examples/**/*', 'lib/**/*']
s.add_dependency('activesupport', '= 3.0.pre')
s.add_dependency('activemodel', '= 3.0.pre')
s.add_dependency('activesupport', '= 3.0.0.beta')
s.add_dependency('activemodel', '= 3.0.0.beta')
s.add_dependency('arel', '~> 0.2.0')
s.require_path = 'lib'

View File

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

View File

@ -1,14 +1,14 @@
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'activeresource'
s.version = '3.0.pre'
s.version = '3.0.0.beta'
s.summary = "Think Active Record for web resources."
s.description = %q{Wraps web resources in model classes that can be manipulated through XML over REST.}
s.files = Dir['CHANGELOG', 'README', 'examples/**/*', 'lib/**/*']
s.add_dependency('activesupport', '= 3.0.pre')
s.add_dependency('activemodel', '= 3.0.pre')
s.add_dependency('activesupport', '= 3.0.0.beta')
s.add_dependency('activemodel', '= 3.0.0.beta')
s.require_path = 'lib'
s.autorequire = 'active_resource'

View File

@ -2,7 +2,7 @@ module ActiveResource
module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = "pre"
TINY = "0.beta"
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -1,7 +1,7 @@
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "activesupport"
s.version = "3.0.pre"
s.version = "3.0.0.beta"
s.date = "2009-09-01"
s.summary = "Support and utility classes used by the Rails framework."
s.description = %q{Utility library which carries commonly used classes and goodies from the Rails framework}

View File

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

View File

@ -1,19 +1,19 @@
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'rails'
s.version = '3.0.pre'
s.version = '3.0.0.beta'
s.summary = "Web-application framework with template engine, control-flow layer, and ORM."
s.description = <<-EOF
Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
EOF
s.add_dependency('activesupport', '= 3.0.pre')
s.add_dependency('actionpack', '= 3.0.pre')
s.add_dependency('activerecord', '= 3.0.pre')
s.add_dependency('activeresource', '= 3.0.pre')
s.add_dependency('actionmailer', '= 3.0.pre')
s.add_dependency('railties', '= 3.0.pre')
s.add_dependency('activesupport', '= 3.0.0.beta')
s.add_dependency('actionpack', '= 3.0.0.beta')
s.add_dependency('activerecord', '= 3.0.0.beta')
s.add_dependency('activeresource', '= 3.0.0.beta')
s.add_dependency('actionmailer', '= 3.0.0.beta')
s.add_dependency('railties', '= 3.0.0.beta')
s.add_dependency('bundler', '>= 0.9.0.pre')
s.rdoc_options << '--exclude' << '.'

View File

@ -14,7 +14,7 @@ namespace :doc do
desc 'Generate documentation for the Rails framework. Specify path with PATH="/path/to/rails"'
Rake::RDocTask.new("rails") { |rdoc|
path = ENV['RAILS_PATH'] || 'vendor/gems/gems'
version = '-3.0.pre' unless ENV['RAILS_PATH']
version = '-3.0.0.beta' unless ENV['RAILS_PATH']
rdoc.rdoc_dir = 'doc/api'
rdoc.template = "#{ENV['template']}.rb" if ENV['template']
rdoc.title = "Rails Framework Documentation"

View File

@ -2,7 +2,7 @@ module Rails
module VERSION #:nodoc:
MAJOR = 3
MINOR = 0
TINY = "pre"
TINY = "0.beta"
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -1,7 +1,7 @@
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'railties'
s.version = '3.0.pre'
s.version = '3.0.0.beta'
s.summary = "Controls boot-up, rake tasks and generators for the Rails framework."
s.description = <<-EOF
Rails is a full-stack, web-application framework.
@ -9,8 +9,8 @@ Gem::Specification.new do |s|
s.add_dependency('rake', '>= 0.8.3')
s.add_dependency('thor', '~> 0.13')
s.add_dependency('activesupport', '= 3.0.pre')
s.add_dependency('actionpack', '= 3.0.pre')
s.add_dependency('activesupport', '= 3.0.0.beta')
s.add_dependency('actionpack', '= 3.0.0.beta')
s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false