From 031139bb717d37f29bc3daf3a6d40ab2a9d7d3fc Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 3 Feb 2010 17:59:39 -0800 Subject: Homogenize gemspecs and remove the deprecated autorequire --- railties/railties.gemspec | 40 +++++++++++++++++++--------------------- 1 file changed, 19 insertions(+), 21 deletions(-) (limited to 'railties') diff --git a/railties/railties.gemspec b/railties/railties.gemspec index 62cfc1bbed..e91bd0e1b5 100644 --- a/railties/railties.gemspec +++ b/railties/railties.gemspec @@ -1,28 +1,26 @@ Gem::Specification.new do |s| - s.platform = Gem::Platform::RUBY - s.name = 'railties' - 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. - EOF + s.platform = Gem::Platform::RUBY + s.name = 'railties' + s.version = '3.0.0.beta' + s.summary = 'Controls boot-up, rake tasks and generators for the Rails framework.' + s.description = 'Controls boot-up, rake tasks and generators for the Rails framework.' - s.add_dependency('rake', '>= 0.8.3') - s.add_dependency('thor', '~> 0.13') - s.add_dependency('activesupport', '= 3.0.0.beta') - s.add_dependency('actionpack', '= 3.0.0.beta') + s.author = 'David Heinemeier Hansson' + s.email = 'david@loudthinking.com' + s.homepage = 'http://www.rubyonrails.org' + s.rubyforge_project = 'rails' + + s.files = Dir['CHANGELOG', 'README', 'bin/**/*', 'builtin/**/*', 'guides/**/*', 'lib/**/{*,.[a-z]*}'] + s.require_path = 'lib' + s.bindir = 'bin' + s.executables = ['rails'] + s.default_executable = 'rails' s.rdoc_options << '--exclude' << '.' s.has_rdoc = false - s.files = Dir['CHANGELOG', 'README', 'bin/**/*', 'builtin/**/*', 'guides/**/*', 'lib/**/{*,.[a-z]*}'] - s.require_path = 'lib' - s.bindir = "bin" - s.executables = ["rails"] - s.default_executable = "rails" - - s.author = "David Heinemeier Hansson" - s.email = "david@loudthinking.com" - s.homepage = "http://www.rubyonrails.org" - s.rubyforge_project = "rails" + s.add_dependency('rake', '>= 0.8.3') + s.add_dependency('thor', '~> 0.13') + s.add_dependency('activesupport', '= 3.0.0.beta') + s.add_dependency('actionpack', '= 3.0.0.beta') end -- cgit v1.2.3