From b3c87746efcf6c9f43ac1cd15a6ea728b46ecf9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Fri, 15 Jan 2010 23:48:38 +0100 Subject: [PATCH] Move I18n to gemspec and update dependencies. --- Gemfile | 3 --- actionmailer/actionmailer.gemspec | 2 +- activesupport/activesupport.gemspec | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Gemfile b/Gemfile index f11e9c227e..81b7ce4d49 100644 --- a/Gemfile +++ b/Gemfile @@ -7,9 +7,6 @@ gem "rails", "3.0.pre", :path => "railties" gem lib, '3.0.pre', :path => lib end -# AS -gem "i18n", "0.3.3" - # AR gem "arel", "0.2.pre", :git => "git://github.com/rails/arel.git" gem "sqlite3-ruby", ">= 1.2.5" diff --git a/actionmailer/actionmailer.gemspec b/actionmailer/actionmailer.gemspec index 0c1106b605..96549bf29c 100644 --- a/actionmailer/actionmailer.gemspec +++ b/actionmailer/actionmailer.gemspec @@ -11,7 +11,7 @@ Gem::Specification.new do |s| s.homepage = "http://www.rubyonrails.org" s.add_dependency('actionpack', '= 3.0.pre') - s.add_dependency('mail', '~> 1.5.2') + s.add_dependency('mail', '~> 1.6.0') s.files = Dir['CHANGELOG', 'README', 'MIT-LICENSE', 'lib/**/*'] s.has_rdoc = true diff --git a/activesupport/activesupport.gemspec b/activesupport/activesupport.gemspec index 2d2cbf6448..8b9dd55b53 100644 --- a/activesupport/activesupport.gemspec +++ b/activesupport/activesupport.gemspec @@ -6,7 +6,7 @@ Gem::Specification.new do |s| 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} - s.add_dependency('i18n', '>= 0.1.3') + s.add_dependency('i18n', '~> 0.3.0') s.files = Dir['CHANGELOG', 'README', 'lib/**/*'] s.require_path = 'lib'