mirror of
https://github.com/github/rails.git
synced 2026-01-13 16:47:56 -05:00
18 lines
693 B
Ruby
18 lines
693 B
Ruby
version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).chomp
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = 'actionpack'
|
|
s.version = version
|
|
s.summary = 'Web-flow and rendering framework putting the VC in MVC.'
|
|
s.description = 'Eases web-request routing, handling, and response as a half-way front, half-way page controller. Implemented with specific emphasis on enabling easy unit/integration testing that doesn\'t require a browser.'
|
|
|
|
s.author = 'David Heinemeier Hansson'
|
|
s.email = 'david@loudthinking.com'
|
|
s.homepage = 'http://www.rubyonrails.org'
|
|
|
|
s.require_path = 'lib'
|
|
|
|
s.add_dependency 'activesupport', "= #{version}"
|
|
s.add_dependency 'rack', '~> 1.4'
|
|
end
|