2010-03-06 14:30:25 -05:00
|
|
|
version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).strip
|
2010-03-01 23:36:54 -05:00
|
|
|
|
2009-08-31 20:20:44 -04:00
|
|
|
Gem::Specification.new do |s|
|
2010-02-03 20:59:39 -05:00
|
|
|
s.platform = Gem::Platform::RUBY
|
|
|
|
s.name = 'railties'
|
2010-03-04 22:41:39 -05:00
|
|
|
s.version = version
|
2010-03-02 13:32:09 -05:00
|
|
|
s.summary = 'Tools for creating, working with, and running Rails applications.'
|
|
|
|
s.description = 'Rails internals: application bootup, plugins, generators, and rake tasks.'
|
2010-02-07 23:30:10 -05:00
|
|
|
s.required_ruby_version = '>= 1.8.7'
|
2009-08-31 20:20:44 -04:00
|
|
|
|
2010-02-03 20:59:39 -05:00
|
|
|
s.author = 'David Heinemeier Hansson'
|
|
|
|
s.email = 'david@loudthinking.com'
|
|
|
|
s.homepage = 'http://www.rubyonrails.org'
|
|
|
|
s.rubyforge_project = 'rails'
|
|
|
|
|
2010-07-21 13:00:01 -04:00
|
|
|
s.files = Dir['CHANGELOG', 'README.rdoc', 'bin/**/*', 'guides/**/*', 'lib/**/{*,.[a-z]*}']
|
2010-02-03 20:59:39 -05:00
|
|
|
s.require_path = 'lib'
|
2009-09-25 01:46:04 -04:00
|
|
|
|
|
|
|
s.rdoc_options << '--exclude' << '.'
|
|
|
|
s.has_rdoc = false
|
|
|
|
|
2010-08-12 18:00:49 -04:00
|
|
|
s.add_dependency('rake', '>= 0.8.4')
|
2010-09-24 15:03:12 -04:00
|
|
|
s.add_dependency('thor', '~> 0.14.2')
|
2010-03-04 22:41:39 -05:00
|
|
|
s.add_dependency('activesupport', version)
|
|
|
|
s.add_dependency('actionpack', version)
|
2009-08-31 20:20:44 -04:00
|
|
|
end
|