diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2010-02-03 17:59:39 -0800 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2010-02-03 17:59:49 -0800 |
commit | 031139bb717d37f29bc3daf3a6d40ab2a9d7d3fc (patch) | |
tree | 16f9e62c4558a42800e8632a3c9a915813fe5bba /activesupport/activesupport.gemspec | |
parent | e71825d40d4427ad1bf8b819adea5987fbf59fc5 (diff) | |
download | rails-031139bb717d37f29bc3daf3a6d40ab2a9d7d3fc.tar.gz rails-031139bb717d37f29bc3daf3a6d40ab2a9d7d3fc.tar.bz2 rails-031139bb717d37f29bc3daf3a6d40ab2a9d7d3fc.zip |
Homogenize gemspecs and remove the deprecated autorequire
Diffstat (limited to 'activesupport/activesupport.gemspec')
-rw-r--r-- | activesupport/activesupport.gemspec | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/activesupport/activesupport.gemspec b/activesupport/activesupport.gemspec index 9e0b48278c..c366ccfa8e 100644 --- a/activesupport/activesupport.gemspec +++ b/activesupport/activesupport.gemspec @@ -1,22 +1,22 @@ Gem::Specification.new do |s| - s.platform = Gem::Platform::RUBY - s.name = "activesupport" - 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} + s.platform = Gem::Platform::RUBY + s.name = 'activesupport' + s.version = '3.0.0.beta' + s.summary = 'Support and utility classes used by the Rails framework.' + s.description = 'Support and utility classes used by the Rails framework.' - s.add_dependency('i18n', '~> 0.3.0') - s.add_dependency('tzinfo', '~> 0.3.16') - s.add_dependency('builder', '~> 2.1.2') - s.add_dependency('memcache-client', '~> 1.7.5') + s.author = 'David Heinemeier Hansson' + s.email = 'david@loudthinking.com' + s.homepage = 'http://www.rubyonrails.org' + s.rubyforge_project = 'activesupport' - s.files = Dir['CHANGELOG', 'README', 'lib/**/*'] + s.files = Dir['CHANGELOG', 'README', 'lib/**/*'] s.require_path = 'lib' + s.has_rdoc = true - s.author = "David Heinemeier Hansson" - s.email = "david@loudthinking.com" - s.homepage = "http://www.rubyonrails.org" - s.rubyforge_project = "activesupport" + s.add_dependency('i18n', '~> 0.3.0') + s.add_dependency('tzinfo', '~> 0.3.16') + s.add_dependency('builder', '~> 2.1.2') + s.add_dependency('memcache-client', '~> 1.7.5') end |