2009-08-31 20:20:44 -04:00
# -*- encoding: utf-8 -*-
Gem :: Specification . new do | s |
s . name = %q{ actionpack }
s . version = " 3.0.pre "
s . required_rubygems_version = Gem :: Requirement . new ( " > 1.3.1 " ) if s . respond_to? :required_rubygems_version =
s . authors = [ " David Heinemeier Hansson " ]
s . autorequire = %q{ action_controller }
2009-09-01 15:26:00 -04:00
s . date = %q{ 2009-09-01 }
2009-08-31 20:20:44 -04:00
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 . email = %q{ david@loudthinking.com }
2009-09-01 15:26:00 -04:00
s . files = [ " Rakefile " , " install.rb " , " README " , " RUNNING_UNIT_TESTS " , " CHANGELOG " , " MIT-LICENSE " , " lib/abstract_controller " , " lib/abstract_controller/base.rb " , " lib/abstract_controller/benchmarker.rb " , " lib/abstract_controller/callbacks.rb " , " lib/abstract_controller/exceptions.rb " , " lib/abstract_controller/helpers.rb " , " lib/abstract_controller/layouts.rb " , " lib/abstract_controller/logger.rb " , " lib/abstract_controller/rendering_controller.rb " , " lib/abstract_controller.rb " , " lib/action_controller " , " lib/action_controller/base.rb " , " lib/action_controller/caching " , " lib/action_controller/caching/actions.rb " , " lib/action_controller/caching/fragments.rb " , " lib/action_controller/caching/pages.rb " , " lib/action_controller/caching/sweeping.rb " , " lib/action_controller/caching.rb " , " lib/action_controller/deprecated.rb " , " lib/action_controller/dispatch " , " lib/action_controller/dispatch/dispatcher.rb " , " lib/action_controller/dispatch/middlewares.rb " , " lib/action_controller/legacy " , " lib/action_controller/legacy/layout.rb " , " lib/action_controller/metal " , " lib/action_controller/metal/compatibility.rb " , " lib/action_controller/metal/conditional_get.rb " , " lib/action_controller/metal/cookies.rb " , " lib/action_controller/metal/exceptions.rb " , " lib/action_controller/metal/filter_parameter_logging.rb " , " lib/action_controller/metal/flash.rb " , " lib/action_controller/metal/helpers.rb " , " lib/action_controller/metal/hide_actions.rb " , " lib/action_controller/metal/http_authentication.rb " , " lib/action_controller/metal/layouts.rb " , " lib/action_controller/metal/mime_responds.rb " , " lib/action_controller/metal/rack_convenience.rb " , " lib/action_controller/metal/redirector.rb " , " lib/action_controller/metal/render_options.rb " , " lib/action_controller/metal/rendering_controller.rb " , " lib/action_controller/metal/request_forgery_protection.rb " , " lib/action_controller/metal/rescuable.rb " , " lib/action_controller/metal/responder.rb " , " lib/action_controller/metal/session.rb " , " lib/action_controller/metal/session_management.rb " , " lib/action_controller/metal/streaming.rb " , " lib/action_controller/metal/testing.rb " , " lib/action_controller/metal/url_for.rb " , " lib/action_controller/metal/verification.rb " , " lib/action_controller/metal.rb " , " lib/action_controller/middleware.rb " , " lib/action_controller/record_identifier.rb " , " lib/action_controller/routing " , " lib/action_controller/routing/builder.rb " , " lib/action_controller/routing/generation " , " lib/action_controller/routing/generation/polymorphic_routes.rb " , " lib/action_controller/routing/generation/url_rewriter.rb " , " lib/action_controller/routing/optimisations.rb " , " lib/action_controller/routing/recognition_optimisation.rb " , " lib/action_controller/routing/resources.rb " , " lib/action_controller/routing/route.rb " , " lib/action_controller/routing/route_set.rb " , " lib/action_controller/routing/routing_ext.rb " , " lib/action_controller/routing/segments.rb " , " lib/action_controller/routing.rb " , " lib/action_controller/testing " , " lib/action_controller/testing/integration.rb " , " lib/action_controller/testing/performance_test.rb " , " lib/action_controller/testing/process.rb " , " lib/action_controller/testing/test_case.rb " , " lib/action_controller/translation.rb " , " lib/action_controller/vendor " , " lib/action_controller/vendor/html-scanner " , " lib/action_controller/vendor/html-scanner/html " , " lib/action_controller/vendor/html-scanner/html/document.rb " , " lib/action_controller/vendor/html-scanner/html/node.rb " , " lib/action_controller/vendor/html-scanner/html/sanitizer.rb " , " lib/action_controller/vendor/html-scanner/html/selector.rb " , " lib/action_controller/vendor/html-scanner/html/tokenizer.rb " , " lib/action_controller/vendor/html-scanner/html/version.rb " , " lib/action_controller/vendor/html-scanner.rb " , " lib/action_controller.rb " , " lib/action_dispatch " , " lib/action_dispatch/http " , " lib/action_dispatch/http/headers.rb " , " lib/action_dispatch/http/mime_type.rb " , " lib/action_dispatch/http/mime_types.rb " , " lib/action_dispatch/http/request.rb " , " lib/action_dispatch/http/response.rb " , " lib/action_dispatch/http/status_codes.rb " , " lib/action_dispatch/middlewar
2009-08-31 20:20:44 -04:00
s . homepage = %q{ http://www.rubyonrails.org }
s . require_paths = [ " lib " ]
s . requirements = [ " none " ]
s . rubyforge_project = %q{ actionpack }
s . rubygems_version = %q{ 1.3.5 }
s . summary = %q{ Web-flow and rendering framework putting the VC in MVC. }
if s . respond_to? :specification_version then
current_version = Gem :: Specification :: CURRENT_SPECIFICATION_VERSION
s . specification_version = 3
if Gem :: Version . new ( Gem :: RubyGemsVersion ) > = Gem :: Version . new ( '1.2.0' ) then
s . add_runtime_dependency ( %q< activesupport > , [ " = 3.0.pre " ] )
2009-09-01 15:26:00 -04:00
s . add_runtime_dependency ( %q< activemodel > , [ " = 3.0.pre " ] )
2009-08-31 20:20:44 -04:00
s . add_runtime_dependency ( %q< rack > , [ " ~> 1.0.0 " ] )
2009-09-22 15:08:59 -04:00
s . add_runtime_dependency ( %q< rack-test > , [ " ~> 0.5.0 " ] )
2009-08-31 20:20:44 -04:00
else
s . add_dependency ( %q< activesupport > , [ " = 3.0.pre " ] )
2009-09-01 15:26:00 -04:00
s . add_dependency ( %q< activemodel > , [ " = 3.0.pre " ] )
2009-08-31 20:20:44 -04:00
s . add_dependency ( %q< rack > , [ " ~> 1.0.0 " ] )
2009-09-22 15:08:59 -04:00
s . add_dependency ( %q< rack-test > , [ " ~> 0.5.0 " ] )
2009-08-31 20:20:44 -04:00
end
else
s . add_dependency ( %q< activesupport > , [ " = 3.0.pre " ] )
2009-09-01 15:26:00 -04:00
s . add_dependency ( %q< activemodel > , [ " = 3.0.pre " ] )
2009-08-31 20:20:44 -04:00
s . add_dependency ( %q< rack > , [ " ~> 1.0.0 " ] )
2009-09-22 15:08:59 -04:00
s . add_dependency ( %q< rack-test > , [ " ~> 0.5.0 " ] )
2009-08-31 20:20:44 -04:00
end
end