2010-03-06 22:30:25 +03:00
|
|
|
version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).strip
|
2010-03-02 07:36:54 +03:00
|
|
|
|
2009-09-01 04:20:44 +04:00
|
|
|
Gem::Specification.new do |s|
|
2010-02-04 04:59:39 +03:00
|
|
|
s.platform = Gem::Platform::RUBY
|
|
|
|
s.name = 'railties'
|
2010-03-05 06:41:39 +03:00
|
|
|
s.version = version
|
2010-03-02 21:32:09 +03:00
|
|
|
s.summary = 'Tools for creating, working with, and running Rails applications.'
|
|
|
|
s.description = 'Rails internals: application bootup, plugins, generators, and rake tasks.'
|
2013-07-08 21:51:19 +04:00
|
|
|
|
|
|
|
s.license = 'MIT'
|
|
|
|
|
2010-02-08 07:30:10 +03:00
|
|
|
s.required_ruby_version = '>= 1.8.7'
|
2009-09-01 04:20:44 +04:00
|
|
|
|
2010-02-04 04:59:39 +03:00
|
|
|
s.author = 'David Heinemeier Hansson'
|
|
|
|
s.email = 'david@loudthinking.com'
|
|
|
|
s.homepage = 'http://www.rubyonrails.org'
|
|
|
|
|
2011-11-04 17:46:35 +04:00
|
|
|
s.files = Dir['CHANGELOG.md', 'README.rdoc', 'bin/**/*', 'guides/**/*', 'lib/**/{*,.[a-z]*}']
|
2010-02-04 04:59:39 +03:00
|
|
|
s.require_path = 'lib'
|
2009-09-25 09:46:04 +04:00
|
|
|
|
2011-06-28 16:35:46 +04:00
|
|
|
s.bindir = 'bin'
|
|
|
|
s.executables = ['rails']
|
|
|
|
|
2009-09-25 09:46:04 +04:00
|
|
|
s.rdoc_options << '--exclude' << '.'
|
|
|
|
|
2011-05-21 21:04:41 +04:00
|
|
|
s.add_dependency('rake', '>= 0.8.7')
|
2011-03-27 20:55:46 +04:00
|
|
|
s.add_dependency('rack-ssl', '~> 1.3.2')
|
2012-04-29 02:55:58 +04:00
|
|
|
|
|
|
|
# The current API of the Thor gem (0.14) will remain stable at least until Thor 2.0. Because
|
|
|
|
# Thor is so heavily used by other gems, we will accept Thor's semver guarantee to reduce
|
|
|
|
# the possibility of conflicts.
|
|
|
|
s.add_dependency('thor', '>= 0.14.6', '< 2.0')
|
2011-06-09 23:18:22 +04:00
|
|
|
s.add_dependency('rdoc', '~> 3.4')
|
2010-03-05 06:41:39 +03:00
|
|
|
s.add_dependency('activesupport', version)
|
|
|
|
s.add_dependency('actionpack', version)
|
2009-09-01 04:20:44 +04:00
|
|
|
end
|