summaryrefslogtreecommitdiff
path: root/www/ruby-actionpack32
diff options
context:
space:
mode:
authortaca <taca>2012-03-18 06:47:54 +0000
committertaca <taca>2012-03-18 06:47:54 +0000
commit21640121184dcb2e425da4b156b72e28bf27c25d (patch)
treed02eac07093ea1cba3cb7867685b85c4301e1336 /www/ruby-actionpack32
parent4c769abead81edad2fb3f390927c29fb45edcc34 (diff)
downloadpkgsrc-21640121184dcb2e425da4b156b72e28bf27c25d.tar.gz
Importing ruby-actionpack32 version 3.2.2.
## Rails 3.2.2 (unreleased) ## * Format lookup for partials is derived from the format in which the template is being rendered. Closes #5025 part 2 *Santiago Pastorino* * Use the right format when a partial is missing. Closes #5025. *Santiago Pastorino* * Default responder will now always use your overridden block in `respond_with` to render your response. *Prem Sichanugrist* * check_box helper with :disabled => true will generate a disabled hidden field to conform with the HTML convention where disabled fields are not submitted with the form. This is a behavior change, previously the hidden tag had a value of the disabled checkbox. *Tadas Tamosauskas* ## Rails 3.2.1 (January 26, 2012) ## * Documentation improvements. * Allow `form.select` to accept ranges (regression). *Jeremy Walker* * `datetime_select` works with -/+ infinity dates. *Joe Van Dyk* ## Rails 3.2.0 (January 20, 2012) ## * Setting config.assets.logger to false turn off Sprockets logger *Guillermo Iguaran* * Add `config.action_dispatch.default_charset` to configure default charset for ActionDispatch::Response. *Carlos Antonio da Silva* * Deprecate setting default charset at controller level, use the new `config.action_dispatch.default_charset` instead. *Carlos Antonio da Silva* * Deprecate ActionController::UnknownAction in favour of AbstractController::ActionNotFound. *Carlos Antonio da Silva* * Deprecate ActionController::DoubleRenderError in favour of AbstractController::DoubleRenderError. *Carlos Antonio da Silva* * Deprecate method_missing handling for not found actions, use action_missing instead. *Carlos Antonio da Silva* * Deprecate ActionController#rescue_action, ActionController#initialize_template_class, and ActionController#assign_shortcuts. These methods were not being used internally anymore and are going to be removed in Rails 4. *Carlos Antonio da Silva* * Add config.assets.logger to configure Sprockets logger *Rafael França* * Use a BodyProxy instead of including a Module that responds to close. Closes #4441 if Active Record is disabled assets are delivered correctly *Santiago Pastorino* * Rails initialization with initialize_on_precompile = false should set assets_dir *Santiago Pastorino* * Add font_path helper method *Santiago Pastorino* * Depends on rack ~> 1.4.0 *Santiago Pastorino* * Add :gzip option to `caches_page`. The default option can be configured globally using `page_cache_compression` *Andrey Sitnik* * The ShowExceptions middleware now accepts a exceptions application that is responsible to render an exception when the application fails. The application is invoked with a copy of the exception in `env["action_dispatch.exception"]` and with the PATH_INFO rewritten to the status code. *José Valim* * Add `button_tag` support to ActionView::Helpers::FormBuilder. This support mimics the default behavior of `submit_tag`. Example: <%= form_for @post do |f| %> <%= f.button %> <% end %> * Date helpers accept a new option, `:use_two_digit_numbers = true`, that renders select boxes for months and days with a leading zero without changing the respective values. For example, this is useful for displaying ISO8601-style dates such as '2011-08-01'. *Lennart Fridén and Kim Persson* * Make ActiveSupport::Benchmarkable a default module for ActionController::Base, so the #benchmark method is once again available in the controller context like it used to be *DHH* * Deprecated implied layout lookup in controllers whose parent had a explicit layout set: class ApplicationController layout "application" end class PostsController < ApplicationController end In the example above, Posts controller will no longer automatically look up for a posts layout. If you need this functionality you could either remove `layout "application"` from ApplicationController or explicitly set it to nil in PostsController. *José Valim* * Rails will now use your default layout (such as "layouts/application") when you specify a layout with `:only` and `:except` condition, and those conditions fail. *Prem Sichanugrist* For example, consider this snippet: class CarsController layout 'single_car', :only => :show end Rails will use 'layouts/single_car' when a request comes in `:show` action, and use 'layouts/application' (or 'layouts/cars', if exists) when a request comes in for any other actions. * form_for with +:as+ option uses "#{action}_#{as}" as css class and id: Before: form_for(@user, :as => 'client') # => "<form class="client_new">..." Now: form_for(@user, :as => 'client') # => "<form class="new_client">..." *Vasiliy Ermolovich* * Allow rescue responses to be configured through a railtie as in `config.action_dispatch.rescue_responses`. Please look at ActiveRecord::Railtie for an example *José Valim* * Allow fresh_when/stale? to take a record instead of an options hash *DHH* * Assets should use the request protocol by default or default to relative if no request is available *Jonathan del Strother* * Log "Filter chain halted as CALLBACKNAME rendered or redirected" every time a before callback halts *José Valim* * You can provide a namespace for your form to ensure uniqueness of id attributes on form elements. The namespace attribute will be prefixed with underscore on the generate HTML id. *Vasiliy Ermolovich* Example: <%= form_for(@offer, :namespace => 'namespace') do |f| %> <%= f.label :version, 'Version' %>: <%= f.text_field :version %> <% end %> * Refactor ActionDispatch::ShowExceptions. The controller is responsible for choosing to show exceptions when `consider_all_requests_local` is false. It's possible to override `show_detailed_exceptions?` in controllers to specify which requests should provide debugging information on errors. The default value is now false, meaning local requests in production will no longer show the detailed exceptions page unless `show_detailed_exceptions?` is overridden and set to `request.local?`. * Responders now return 204 No Content for API requests without a response body (as in the new scaffold) *José Valim* * Added ActionDispatch::RequestId middleware that'll make a unique X-Request-Id header available to the response and enables the ActionDispatch::Request#uuid method. This makes it easy to trace requests from end-to-end in the stack and to identify individual requests in mixed logs like Syslog *DHH* * Limit the number of options for select_year to 1000. Pass the :max_years_allowed option to set your own limit. *Libo Cannici* * Passing formats or handlers to render :template and friends is deprecated. For example: *Nick Sutterer & José Valim* render :template => "foo.html.erb" Instead, you can provide :handlers and :formats directly as option: render :template => "foo", :formats => [:html, :js], :handlers => :erb * Changed log level of warning for missing CSRF token from :debug to :warn. *Mike Dillon* * content_tag_for and div_for can now take the collection of records. It will also yield the record as the first argument if you set a receiving argument in your block *Prem Sichanugrist* So instead of having to do this: @items.each do |item| content_tag_for(:li, item) do Title: <%= item.title %> end end You can now do this: content_tag_for(:li, @items) do |item| Title: <%= item.title %> end * send_file now guess the mime type *Esad Hajdarevic* * Mime type entries for PDF, ZIP and other formats were added *Esad Hajdarevic* * Generate hidden input before select with :multiple option set to true. This is useful when you rely on the fact that when no options is set, the state of select will be sent to rails application. Without hidden field nothing is sent according to HTML spec *Bogdan Gusiev* * Refactor ActionController::TestCase cookies *Andrew White* Assigning cookies for test cases should now use cookies[], e.g: cookies[:email] = 'user@example.com' get :index assert_equal 'user@example.com', cookies[:email] To clear the cookies, use clear, e.g: cookies.clear get :index assert_nil cookies[:email] We now no longer write out HTTP_COOKIE and the cookie jar is persistent between requests so if you need to manipulate the environment for your test you need to do it before the cookie jar is created. * ActionController::ParamsWrapper on ActiveRecord models now only wrap attr_accessible attributes if they were set, if not, only the attributes returned by the class method attribute_names will be wrapped. This fixes the wrapping of nested attributes by adding them to attr_accessible.
Diffstat (limited to 'www/ruby-actionpack32')
-rw-r--r--www/ruby-actionpack32/DESCR5
-rw-r--r--www/ruby-actionpack32/Makefile25
-rw-r--r--www/ruby-actionpack32/PLIST194
-rw-r--r--www/ruby-actionpack32/distinfo5
4 files changed, 229 insertions, 0 deletions
diff --git a/www/ruby-actionpack32/DESCR b/www/ruby-actionpack32/DESCR
new file mode 100644
index 00000000000..c5b96ca5cc4
--- /dev/null
+++ b/www/ruby-actionpack32/DESCR
@@ -0,0 +1,5 @@
+Action Pack is a framework for handling and responding to web requests. It
+provides mechanisms for *routing* (mapping request URLs to actions), defining
+*controllers* that implement actions, and generating responses by rendering
+*views*, which are templates of various formats. In short, Action Pack
+provides the view and controller layers in the MVC paradigm.
diff --git a/www/ruby-actionpack32/Makefile b/www/ruby-actionpack32/Makefile
new file mode 100644
index 00000000000..d7ee897ba7c
--- /dev/null
+++ b/www/ruby-actionpack32/Makefile
@@ -0,0 +1,25 @@
+# $NetBSD: Makefile,v 1.1.1.1 2012/03/18 06:47:54 taca Exp $
+
+DISTNAME= actionpack-${RUBY_RAILS_VERSION}
+CATEGORIES= www
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://www.rubyonrails.org/
+COMMENT= Toolkit for building modeling frameworks (part of Rails 3.2)
+LICENSE= mit
+
+# Comment out dependency in gemspec but already depends indirectly one.
+#DEPENDS+= ${RUBY_ACTIVESUPPORT_DEPENDS}
+DEPENDS+= ${RUBY_ACTIVEMODEL_DEPENDS}
+#DEPENDS+= ${RUBY_PKGPREFIX}-builder>=3.0.0<3.1:../../textproc/ruby-builder
+DEPENDS+= ${RUBY_PKGPREFIX}-rack>=1.4.0<1.5:../../www/ruby-rack
+DEPENDS+= ${RUBY_PKGPREFIX}-rack-cache>=1.1<2:../../www/ruby-rack-cache
+DEPENDS+= ${RUBY_PKGPREFIX}-rack-test>=0.6.1<0.7:../../www/ruby-rack-test
+DEPENDS+= ${RUBY_PKGPREFIX}-journey>=1.0.1<1.1:../../www/ruby-journey
+DEPENDS+= ${RUBY_PKGPREFIX}-sprockets>=2.1.2<2.2:../../misc/ruby-sprockets21
+DEPENDS+= ${RUBY_PKGPREFIX}-erubis>=2.7.0<2.8:../../www/ruby-erubis
+
+RUBY_RAILS_SUPPORTED= 32
+
+.include "../../lang/ruby/gem.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/www/ruby-actionpack32/PLIST b/www/ruby-actionpack32/PLIST
new file mode 100644
index 00000000000..24bb0754c51
--- /dev/null
+++ b/www/ruby-actionpack32/PLIST
@@ -0,0 +1,194 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2012/03/18 06:47:55 taca Exp $
+${GEM_HOME}/cache/${GEM_NAME}.gem
+${GEM_LIBDIR}/CHANGELOG.md
+${GEM_LIBDIR}/MIT-LICENSE
+${GEM_LIBDIR}/README.rdoc
+${GEM_LIBDIR}/lib/abstract_controller.rb
+${GEM_LIBDIR}/lib/abstract_controller/asset_paths.rb
+${GEM_LIBDIR}/lib/abstract_controller/base.rb
+${GEM_LIBDIR}/lib/abstract_controller/callbacks.rb
+${GEM_LIBDIR}/lib/abstract_controller/collector.rb
+${GEM_LIBDIR}/lib/abstract_controller/helpers.rb
+${GEM_LIBDIR}/lib/abstract_controller/layouts.rb
+${GEM_LIBDIR}/lib/abstract_controller/logger.rb
+${GEM_LIBDIR}/lib/abstract_controller/railties/routes_helpers.rb
+${GEM_LIBDIR}/lib/abstract_controller/rendering.rb
+${GEM_LIBDIR}/lib/abstract_controller/translation.rb
+${GEM_LIBDIR}/lib/abstract_controller/url_for.rb
+${GEM_LIBDIR}/lib/abstract_controller/view_paths.rb
+${GEM_LIBDIR}/lib/action_controller.rb
+${GEM_LIBDIR}/lib/action_controller/base.rb
+${GEM_LIBDIR}/lib/action_controller/caching.rb
+${GEM_LIBDIR}/lib/action_controller/caching/actions.rb
+${GEM_LIBDIR}/lib/action_controller/caching/fragments.rb
+${GEM_LIBDIR}/lib/action_controller/caching/pages.rb
+${GEM_LIBDIR}/lib/action_controller/caching/sweeping.rb
+${GEM_LIBDIR}/lib/action_controller/deprecated.rb
+${GEM_LIBDIR}/lib/action_controller/deprecated/integration_test.rb
+${GEM_LIBDIR}/lib/action_controller/deprecated/performance_test.rb
+${GEM_LIBDIR}/lib/action_controller/log_subscriber.rb
+${GEM_LIBDIR}/lib/action_controller/metal.rb
+${GEM_LIBDIR}/lib/action_controller/metal/compatibility.rb
+${GEM_LIBDIR}/lib/action_controller/metal/conditional_get.rb
+${GEM_LIBDIR}/lib/action_controller/metal/cookies.rb
+${GEM_LIBDIR}/lib/action_controller/metal/data_streaming.rb
+${GEM_LIBDIR}/lib/action_controller/metal/exceptions.rb
+${GEM_LIBDIR}/lib/action_controller/metal/flash.rb
+${GEM_LIBDIR}/lib/action_controller/metal/force_ssl.rb
+${GEM_LIBDIR}/lib/action_controller/metal/head.rb
+${GEM_LIBDIR}/lib/action_controller/metal/helpers.rb
+${GEM_LIBDIR}/lib/action_controller/metal/hide_actions.rb
+${GEM_LIBDIR}/lib/action_controller/metal/http_authentication.rb
+${GEM_LIBDIR}/lib/action_controller/metal/implicit_render.rb
+${GEM_LIBDIR}/lib/action_controller/metal/instrumentation.rb
+${GEM_LIBDIR}/lib/action_controller/metal/mime_responds.rb
+${GEM_LIBDIR}/lib/action_controller/metal/params_wrapper.rb
+${GEM_LIBDIR}/lib/action_controller/metal/rack_delegation.rb
+${GEM_LIBDIR}/lib/action_controller/metal/redirecting.rb
+${GEM_LIBDIR}/lib/action_controller/metal/renderers.rb
+${GEM_LIBDIR}/lib/action_controller/metal/rendering.rb
+${GEM_LIBDIR}/lib/action_controller/metal/request_forgery_protection.rb
+${GEM_LIBDIR}/lib/action_controller/metal/rescue.rb
+${GEM_LIBDIR}/lib/action_controller/metal/responder.rb
+${GEM_LIBDIR}/lib/action_controller/metal/session_management.rb
+${GEM_LIBDIR}/lib/action_controller/metal/streaming.rb
+${GEM_LIBDIR}/lib/action_controller/metal/testing.rb
+${GEM_LIBDIR}/lib/action_controller/metal/url_for.rb
+${GEM_LIBDIR}/lib/action_controller/middleware.rb
+${GEM_LIBDIR}/lib/action_controller/railtie.rb
+${GEM_LIBDIR}/lib/action_controller/railties/paths.rb
+${GEM_LIBDIR}/lib/action_controller/record_identifier.rb
+${GEM_LIBDIR}/lib/action_controller/test_case.rb
+${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner.rb
+${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner/html/document.rb
+${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner/html/node.rb
+${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner/html/sanitizer.rb
+${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner/html/selector.rb
+${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner/html/tokenizer.rb
+${GEM_LIBDIR}/lib/action_controller/vendor/html-scanner/html/version.rb
+${GEM_LIBDIR}/lib/action_dispatch.rb
+${GEM_LIBDIR}/lib/action_dispatch/http/cache.rb
+${GEM_LIBDIR}/lib/action_dispatch/http/filter_parameters.rb
+${GEM_LIBDIR}/lib/action_dispatch/http/headers.rb
+${GEM_LIBDIR}/lib/action_dispatch/http/mime_negotiation.rb
+${GEM_LIBDIR}/lib/action_dispatch/http/mime_type.rb
+${GEM_LIBDIR}/lib/action_dispatch/http/mime_types.rb
+${GEM_LIBDIR}/lib/action_dispatch/http/parameter_filter.rb
+${GEM_LIBDIR}/lib/action_dispatch/http/parameters.rb
+${GEM_LIBDIR}/lib/action_dispatch/http/rack_cache.rb
+${GEM_LIBDIR}/lib/action_dispatch/http/request.rb
+${GEM_LIBDIR}/lib/action_dispatch/http/response.rb
+${GEM_LIBDIR}/lib/action_dispatch/http/upload.rb
+${GEM_LIBDIR}/lib/action_dispatch/http/url.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/best_standards_support.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/body_proxy.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/callbacks.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/cookies.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/debug_exceptions.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/exception_wrapper.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/flash.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/head.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/params_parser.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/public_exceptions.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/reloader.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/remote_ip.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/request_id.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/rescue.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/session/abstract_store.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/session/cache_store.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/session/cookie_store.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/session/mem_cache_store.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/show_exceptions.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/stack.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/static.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/templates/rescues/_trace.erb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/templates/rescues/layout.erb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/templates/rescues/missing_template.erb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/templates/rescues/routing_error.erb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/templates/rescues/template_error.erb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb
+${GEM_LIBDIR}/lib/action_dispatch/railtie.rb
+${GEM_LIBDIR}/lib/action_dispatch/routing.rb
+${GEM_LIBDIR}/lib/action_dispatch/routing/mapper.rb
+${GEM_LIBDIR}/lib/action_dispatch/routing/polymorphic_routes.rb
+${GEM_LIBDIR}/lib/action_dispatch/routing/redirection.rb
+${GEM_LIBDIR}/lib/action_dispatch/routing/route_set.rb
+${GEM_LIBDIR}/lib/action_dispatch/routing/routes_proxy.rb
+${GEM_LIBDIR}/lib/action_dispatch/routing/url_for.rb
+${GEM_LIBDIR}/lib/action_dispatch/testing/assertions.rb
+${GEM_LIBDIR}/lib/action_dispatch/testing/assertions/dom.rb
+${GEM_LIBDIR}/lib/action_dispatch/testing/assertions/response.rb
+${GEM_LIBDIR}/lib/action_dispatch/testing/assertions/routing.rb
+${GEM_LIBDIR}/lib/action_dispatch/testing/assertions/selector.rb
+${GEM_LIBDIR}/lib/action_dispatch/testing/assertions/tag.rb
+${GEM_LIBDIR}/lib/action_dispatch/testing/integration.rb
+${GEM_LIBDIR}/lib/action_dispatch/testing/performance_test.rb
+${GEM_LIBDIR}/lib/action_dispatch/testing/test_process.rb
+${GEM_LIBDIR}/lib/action_dispatch/testing/test_request.rb
+${GEM_LIBDIR}/lib/action_dispatch/testing/test_response.rb
+${GEM_LIBDIR}/lib/action_pack.rb
+${GEM_LIBDIR}/lib/action_pack/version.rb
+${GEM_LIBDIR}/lib/action_view.rb
+${GEM_LIBDIR}/lib/action_view/asset_paths.rb
+${GEM_LIBDIR}/lib/action_view/base.rb
+${GEM_LIBDIR}/lib/action_view/buffers.rb
+${GEM_LIBDIR}/lib/action_view/context.rb
+${GEM_LIBDIR}/lib/action_view/flows.rb
+${GEM_LIBDIR}/lib/action_view/helpers.rb
+${GEM_LIBDIR}/lib/action_view/helpers/active_model_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/asset_paths.rb
+${GEM_LIBDIR}/lib/action_view/helpers/asset_tag_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/asset_tag_helpers/asset_include_tag.rb
+${GEM_LIBDIR}/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb
+${GEM_LIBDIR}/lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb
+${GEM_LIBDIR}/lib/action_view/helpers/asset_tag_helpers/stylesheet_tag_helpers.rb
+${GEM_LIBDIR}/lib/action_view/helpers/atom_feed_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/cache_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/capture_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/controller_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/csrf_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/date_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/debug_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/form_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/form_options_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/form_tag_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/javascript_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/number_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/output_safety_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/record_tag_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/rendering_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/sanitize_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/tag_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/text_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/translation_helper.rb
+${GEM_LIBDIR}/lib/action_view/helpers/url_helper.rb
+${GEM_LIBDIR}/lib/action_view/locale/en.yml
+${GEM_LIBDIR}/lib/action_view/log_subscriber.rb
+${GEM_LIBDIR}/lib/action_view/lookup_context.rb
+${GEM_LIBDIR}/lib/action_view/path_set.rb
+${GEM_LIBDIR}/lib/action_view/railtie.rb
+${GEM_LIBDIR}/lib/action_view/renderer/abstract_renderer.rb
+${GEM_LIBDIR}/lib/action_view/renderer/partial_renderer.rb
+${GEM_LIBDIR}/lib/action_view/renderer/renderer.rb
+${GEM_LIBDIR}/lib/action_view/renderer/streaming_template_renderer.rb
+${GEM_LIBDIR}/lib/action_view/renderer/template_renderer.rb
+${GEM_LIBDIR}/lib/action_view/template.rb
+${GEM_LIBDIR}/lib/action_view/template/error.rb
+${GEM_LIBDIR}/lib/action_view/template/handlers.rb
+${GEM_LIBDIR}/lib/action_view/template/handlers/builder.rb
+${GEM_LIBDIR}/lib/action_view/template/handlers/erb.rb
+${GEM_LIBDIR}/lib/action_view/template/resolver.rb
+${GEM_LIBDIR}/lib/action_view/template/text.rb
+${GEM_LIBDIR}/lib/action_view/test_case.rb
+${GEM_LIBDIR}/lib/action_view/testing/resolvers.rb
+${GEM_LIBDIR}/lib/sprockets/assets.rake
+${GEM_LIBDIR}/lib/sprockets/bootstrap.rb
+${GEM_LIBDIR}/lib/sprockets/compressors.rb
+${GEM_LIBDIR}/lib/sprockets/helpers.rb
+${GEM_LIBDIR}/lib/sprockets/helpers/isolated_helper.rb
+${GEM_LIBDIR}/lib/sprockets/helpers/rails_helper.rb
+${GEM_LIBDIR}/lib/sprockets/railtie.rb
+${GEM_LIBDIR}/lib/sprockets/static_compiler.rb
+${GEM_HOME}/specifications/${GEM_NAME}.gemspec
diff --git a/www/ruby-actionpack32/distinfo b/www/ruby-actionpack32/distinfo
new file mode 100644
index 00000000000..701932e25f3
--- /dev/null
+++ b/www/ruby-actionpack32/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2012/03/18 06:47:55 taca Exp $
+
+SHA1 (actionpack-3.2.2.gem) = 5f80d50d23a0f32bcd66a69e8d0f7c6ee78fc26b
+RMD160 (actionpack-3.2.2.gem) = d011c86e138dab2872c85bb7982e5cce477d4f59
+Size (actionpack-3.2.2.gem) = 375808 bytes