From 02d553d24cc976136c59b9278bcfbe114f334087 Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Sun, 10 Feb 2013 19:14:02 -0800 Subject: [PATCH] bumping to 2.3.17 --- actionmailer/Rakefile | 2 +- actionmailer/actionmailer.gemspec | 4 ++-- actionmailer/lib/action_mailer/version.rb | 2 +- actionpack/Rakefile | 2 +- actionpack/actionpack.gemspec | 4 ++-- actionpack/lib/action_pack/version.rb | 2 +- activerecord/Rakefile | 2 +- activerecord/activerecord.gemspec | 4 ++-- activerecord/lib/active_record/version.rb | 2 +- activeresource/Rakefile | 2 +- activeresource/activeresource.gemspec | 4 ++-- activeresource/lib/active_resource/version.rb | 2 +- activesupport/activesupport.gemspec | 2 +- activesupport/lib/active_support/version.rb | 2 +- railties/Rakefile | 10 +++++----- railties/lib/rails/version.rb | 2 +- railties/railties.gemspec | 12 ++++++------ 17 files changed, 30 insertions(+), 30 deletions(-) diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index c53b979f58..528e31a25d 100644 --- a/actionmailer/Rakefile +++ b/actionmailer/Rakefile @@ -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' diff --git a/actionmailer/actionmailer.gemspec b/actionmailer/actionmailer.gemspec index 1bd79126e7..126bca1caf 100644 --- a/actionmailer/actionmailer.gemspec +++ b/actionmailer/actionmailer.gemspec @@ -1,6 +1,6 @@ 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 diff --git a/actionmailer/lib/action_mailer/version.rb b/actionmailer/lib/action_mailer/version.rb index 60de274dc0..669f051a2d 100644 --- a/actionmailer/lib/action_mailer/version.rb +++ b/actionmailer/lib/action_mailer/version.rb @@ -2,7 +2,7 @@ module ActionMailer module VERSION #:nodoc: MAJOR = 2 MINOR = 3 - TINY = 16 + TINY = 17 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/actionpack/Rakefile b/actionpack/Rakefile index e6e285a875..9d261d8c90 100644 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -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' diff --git a/actionpack/actionpack.gemspec b/actionpack/actionpack.gemspec index 67ce426b1d..51788ec455 100644 --- a/actionpack/actionpack.gemspec +++ b/actionpack/actionpack.gemspec @@ -1,6 +1,6 @@ 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 diff --git a/actionpack/lib/action_pack/version.rb b/actionpack/lib/action_pack/version.rb index 0519eb0c9c..85be0bed89 100644 --- a/actionpack/lib/action_pack/version.rb +++ b/actionpack/lib/action_pack/version.rb @@ -2,7 +2,7 @@ module ActionPack #:nodoc: module VERSION #:nodoc: MAJOR = 2 MINOR = 3 - TINY = 16 + TINY = 17 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/activerecord/Rakefile b/activerecord/Rakefile index 47570bda3a..6ebc655787 100644 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -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" diff --git a/activerecord/activerecord.gemspec b/activerecord/activerecord.gemspec index 41f1f50c23..8754472f26 100644 --- a/activerecord/activerecord.gemspec +++ b/activerecord/activerecord.gemspec @@ -1,6 +1,6 @@ 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 diff --git a/activerecord/lib/active_record/version.rb b/activerecord/lib/active_record/version.rb index 8aaf96e8b4..ee51ca8714 100644 --- a/activerecord/lib/active_record/version.rb +++ b/activerecord/lib/active_record/version.rb @@ -2,7 +2,7 @@ module ActiveRecord module VERSION #:nodoc: MAJOR = 2 MINOR = 3 - TINY = 16 + TINY = 17 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/activeresource/Rakefile b/activeresource/Rakefile index 89f765d7c8..0400dbe182 100644 --- a/activeresource/Rakefile +++ b/activeresource/Rakefile @@ -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' diff --git a/activeresource/activeresource.gemspec b/activeresource/activeresource.gemspec index cc85863971..7dcc6a3c9c 100644 --- a/activeresource/activeresource.gemspec +++ b/activeresource/activeresource.gemspec @@ -1,6 +1,6 @@ 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 diff --git a/activeresource/lib/active_resource/version.rb b/activeresource/lib/active_resource/version.rb index 9625b974be..9a26a789bc 100644 --- a/activeresource/lib/active_resource/version.rb +++ b/activeresource/lib/active_resource/version.rb @@ -2,7 +2,7 @@ module ActiveResource module VERSION #:nodoc: MAJOR = 2 MINOR = 3 - TINY = 16 + TINY = 17 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/activesupport/activesupport.gemspec b/activesupport/activesupport.gemspec index f8c99b5460..7e49d68e70 100644 --- a/activesupport/activesupport.gemspec +++ b/activesupport/activesupport.gemspec @@ -1,6 +1,6 @@ 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' diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index 7f8e7d2ba6..da33a8a7c1 100644 --- a/activesupport/lib/active_support/version.rb +++ b/activesupport/lib/active_support/version.rb @@ -2,7 +2,7 @@ module ActiveSupport module VERSION #:nodoc: MAJOR = 2 MINOR = 3 - TINY = 16 + TINY = 17 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/railties/Rakefile b/railties/Rakefile index 25fe0319f3..9f6545b60a 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -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' << '.' diff --git a/railties/lib/rails/version.rb b/railties/lib/rails/version.rb index 9a36600115..157fec6909 100644 --- a/railties/lib/rails/version.rb +++ b/railties/lib/rails/version.rb @@ -2,7 +2,7 @@ module Rails module VERSION #:nodoc: MAJOR = 2 MINOR = 3 - TINY = 16 + TINY = 17 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/railties/railties.gemspec b/railties/railties.gemspec index 6f82d3ed31..e89c36f25d 100644 --- a/railties/railties.gemspec +++ b/railties/railties.gemspec @@ -1,6 +1,6 @@ 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 -- GitLab