提交 02d553d2 编写于 作者: A Aaron Patterson

bumping to 2.3.17

上级 5cfe8330
......@@ -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.16' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.17' + PKG_BUILD)
s.requirements << 'none'
s.require_path = 'lib'
......
Gem::Specification.new do |s|
s.name = 'actionmailer'
s.version = '2.3.16'
s.version = '2.3.17'
s.summary = 'Service layer for easy email delivery and testing.'
s.description = 'Makes it trivial to test and deliver emails sent from a single service layer.'
......@@ -10,5 +10,5 @@
s.require_path = 'lib'
s.add_dependency 'actionpack', '= 2.3.16'
s.add_dependency 'actionpack', '= 2.3.17'
end
......@@ -2,7 +2,7 @@ module ActionMailer
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 16
TINY = 17
STRING = [MAJOR, MINOR, TINY].join('.')
end
......
......@@ -78,7 +78,7 @@ spec = Gem::Specification.new do |s|
s.requirements << 'none'
s.add_dependency('activesupport', '= 2.3.16' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.17' + PKG_BUILD)
s.add_dependency('rack', '~> 1.1.0')
s.require_path = 'lib'
......
Gem::Specification.new do |s|
s.name = 'actionpack'
s.version = '2.3.16'
s.version = '2.3.17'
s.summary = 'Web-flow and rendering framework putting the VC in MVC.'
s.description = '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.'
......@@ -10,6 +10,6 @@
s.require_path = 'lib'
s.add_dependency 'activesupport', '= 2.3.16'
s.add_dependency 'activesupport', '= 2.3.17'
s.add_dependency 'rack', '~> 1.1.0'
end
......@@ -2,7 +2,7 @@ module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 16
TINY = 17
STRING = [MAJOR, MINOR, TINY].join('.')
end
......
......@@ -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.16' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.17' + PKG_BUILD)
s.files.delete FIXTURES_ROOT + "/fixture_database.sqlite"
s.files.delete FIXTURES_ROOT + "/fixture_database_2.sqlite"
......
Gem::Specification.new do |s|
s.name = 'activerecord'
s.version = '2.3.16'
s.version = '2.3.17'
s.summary = 'Implements the ActiveRecord pattern for ORM.'
s.description = '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.'
......@@ -13,5 +13,5 @@
s.rdoc_options = ['--main', 'README']
s.extra_rdoc_files = ['README']
s.add_dependency 'activesupport', '= 2.3.16'
s.add_dependency 'activesupport', '= 2.3.17'
end
......@@ -2,7 +2,7 @@ module ActiveRecord
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 16
TINY = 17
STRING = [MAJOR, MINOR, TINY].join('.')
end
......
......@@ -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.16' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.17' + PKG_BUILD)
s.require_path = 'lib'
......
Gem::Specification.new do |s|
s.name = 'activeresource'
s.version = '2.3.16'
s.version = '2.3.17'
s.summary = 'Think Active Record for web resources.'
s.description = 'Wraps web resources in model classes that can be manipulated through XML over REST.'
......@@ -13,5 +13,5 @@
s.rdoc_options = ['--main', 'README']
s.extra_rdoc_files = ['README']
s.add_dependency 'activesupport', '= 2.3.16'
s.add_dependency 'activesupport', '= 2.3.17'
end
......@@ -2,7 +2,7 @@ module ActiveResource
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 16
TINY = 17
STRING = [MAJOR, MINOR, TINY].join('.')
end
......
Gem::Specification.new do |s|
s.name = 'activesupport'
s.version = '2.3.16'
s.version = '2.3.17'
s.summary = 'Support and utility classes used by the Rails framework.'
s.description = 'Utility library which carries commonly used classes and goodies from the Rails framework'
......
......@@ -2,7 +2,7 @@ module ActiveSupport
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 16
TINY = 17
STRING = [MAJOR, MINOR, TINY].join('.')
end
......
......@@ -313,11 +313,11 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.8.3')
s.add_dependency('activesupport', '= 2.3.16' + PKG_BUILD)
s.add_dependency('activerecord', '= 2.3.16' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.16' + PKG_BUILD)
s.add_dependency('actionmailer', '= 2.3.16' + PKG_BUILD)
s.add_dependency('activeresource', '= 2.3.16' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.17' + PKG_BUILD)
s.add_dependency('activerecord', '= 2.3.17' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.17' + PKG_BUILD)
s.add_dependency('actionmailer', '= 2.3.17' + PKG_BUILD)
s.add_dependency('activeresource', '= 2.3.17' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
......
......@@ -2,7 +2,7 @@ module Rails
module VERSION #:nodoc:
MAJOR = 2
MINOR = 3
TINY = 16
TINY = 17
STRING = [MAJOR, MINOR, TINY].join('.')
end
......
Gem::Specification.new do |s|
s.name = 'rails'
s.version = '2.3.16'
s.version = '2.3.17'
s.summary = 'Web-application framework with template engine, control-flow layer, and ORM.'
s.description = "Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick\non top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates."
......@@ -14,9 +14,9 @@
s.rdoc_options = ['--exclude', '.']
s.add_dependency 'rake', '>= 0.8.3'
s.add_dependency 'activesupport', '= 2.3.16'
s.add_dependency 'activerecord', '= 2.3.16'
s.add_dependency 'actionpack', '= 2.3.16'
s.add_dependency 'actionmailer', '= 2.3.16'
s.add_dependency 'activeresource', '= 2.3.16'
s.add_dependency 'activesupport', '= 2.3.17'
s.add_dependency 'activerecord', '= 2.3.17'
s.add_dependency 'actionpack', '= 2.3.17'
s.add_dependency 'actionmailer', '= 2.3.17'
s.add_dependency 'activeresource', '= 2.3.17'
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册