2009-08-31 20:20:44 -04:00
Gem :: Specification . new do | s |
2009-09-25 01:46:04 -04:00
s . platform = Gem :: Platform :: RUBY
s . name = 'actionpack'
s . version = '3.0.pre'
s . summary = " Web-flow and rendering framework putting the VC in MVC. "
s . description = %q{ 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 . rubyforge_project = " actionpack "
s . homepage = " http://www.rubyonrails.org "
2009-08-31 20:20:44 -04:00
2009-09-25 01:46:04 -04:00
s . files = Dir [ 'CHANGELOG' , 'README' , 'MIT-LICENSE' , 'lib/**/*' ]
s . has_rdoc = true
s . requirements << 'none'
2009-08-31 20:20:44 -04:00
2009-09-25 01:46:04 -04:00
s . add_dependency ( 'activesupport' , '= 3.0.pre' )
s . add_dependency ( 'activemodel' , '= 3.0.pre' )
2009-11-09 16:27:58 -05:00
s . add_dependency ( 'rack' , '~> 1.0.1' )
s . add_dependency ( 'rack-test' , '~> 0.5.0' )
2009-11-29 16:34:46 -05:00
s . add_dependency ( 'rack-mount' , '~> 0.2.3' )
2009-11-14 05:39:38 -05:00
s . add_dependency ( 'erubis' , '~> 2.6.5' )
2009-08-31 20:20:44 -04:00
2009-09-25 01:46:04 -04:00
s . require_path = 'lib'
s . autorequire = 'action_controller'
2009-08-31 20:20:44 -04:00
end