mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
23 lines
918 B
Ruby
23 lines
918 B
Ruby
Gem::Specification.new do |s|
|
|
s.name = 'rails'
|
|
s.version = '2.3.18'
|
|
s.summary = 'Web-application framework with template engine, control-flow layer, and ORM.'
|
|
s.description = "Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick\non top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates."
|
|
|
|
s.author = 'David Heinemeier Hansson'
|
|
s.email = 'david@loudthinking.com'
|
|
s.homepage = 'http://www.rubyonrails.org'
|
|
|
|
s.require_path = 'lib'
|
|
s.files = ['bin/rails']
|
|
s.executables = ['rails']
|
|
s.rdoc_options = ['--exclude', '.']
|
|
|
|
s.add_dependency 'rake', '>= 0.8.3'
|
|
s.add_dependency 'activesupport', '= 2.3.18'
|
|
s.add_dependency 'activerecord', '= 2.3.18'
|
|
s.add_dependency 'actionpack', '= 2.3.18'
|
|
s.add_dependency 'actionmailer', '= 2.3.18'
|
|
s.add_dependency 'activeresource', '= 2.3.18'
|
|
end
|