1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/railties.gemspec
David Heinemeier Hansson ddb512c02b Simplify description
2010-02-03 17:27:06 -08:00

28 lines
883 B
Ruby

Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'railties'
s.version = '3.0.pre'
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.add_dependency('rake', '>= 0.8.3')
s.add_dependency('thor', '~> 0.13')
s.add_dependency('activesupport', '= 3.0.pre')
s.add_dependency('actionpack', '= 3.0.pre')
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"
end