summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortaca <taca>2011-12-16 12:26:29 +0000
committertaca <taca>2011-12-16 12:26:29 +0000
commit564422a32c444af45548504c7f18caee3ae4f34e (patch)
treebbe39e4a31f0d839247c139a1f415faccb9e6795
parent1ee11c9efe291c6c9b7016804f47271ef9782203 (diff)
downloadpkgsrc-564422a32c444af45548504c7f18caee3ae4f34e.tar.gz
Importing www/ruby-actionpack31 package version 3.1.3.
## Rails 3.1.3 (unreleased) ## * Downgrade sprockets to ~> 2.0.3. Using 2.1.0 caused regressions. * Fix using `tranlate` helper with a html translation which uses the `:count` option for pluralization. *Jon Leighton* ## Rails 3.1.2 (unreleased) ## * Fix XSS security vulnerability in the `translate` helper method. When using interpolation in combination with HTML-safe translations, the interpolated input would not get HTML escaped. *GH 3664* Before: translate('foo_html', :something => '<script>') # => "...<script>..." After: translate('foo_html', :something => '<script>') # => "...&lt;script&gt;..." *Sergey Nartimov* * Upgrade sprockets dependency to ~> 2.1.0 * Ensure that the format isn't applied twice to the cache key, else it becomes impossible to target with expire_action. *Christopher Meiklejohn* * Swallow error when can't unmarshall object from session. *Bruno Zanchet* * Implement a workaround for a bug in ruby-1.9.3p0 where an error would be raised while attempting to convert a template from one encoding to another. Please see http://redmine.ruby-lang.org/issues/5564 for details of the bug. The workaround is to load all conversions into memory ahead of time, and will only happen if the ruby version is *exactly* 1.9.3p0. The hope is obviously that the underlying problem will be resolved in the next patchlevel release of 1.9.3. *Jon Leighton* * Ensure users upgrading from 3.0.x to 3.1.x will properly upgrade their flash object in session (issues #3298 and #2509) ## Rails 3.1.1 (October 7, 2011) ## * stylesheet_link_tag('/stylesheets/application') and similar helpers doesn't throw Sprockets::FileOutsidePaths exception anymore *Santiago Pastorino* * Ensure default_asset_host_protocol is respected, closes #2980. *Jos Valim* Changing rake db:schema:dump to run :environment as well as :load_config, as running :load_config alone will lead to the dumper being run without including extensions such as those included in foreigner and spatial_adapter. This reverses a change made here: https://github.com/rails/rails/commit/5df72a238e9fcb18daf6ab6e6dc9051c9106d7bb#L0L324 I'm assuming here that :load_config needs to be invoked separately from :environment, as it is elsewhere in the file for db operations, if not the alternative is to go back to "task :dump => :environment do". *Ben Woosley* * Update to rack-cache 1.1. Versions prior to 1.1 delete the If-Modified-Since and If-Not-Modified headers when config.action_controller.perform_caching is true. This has two problems: * unexpected inconsistent behaviour between development & production environments * breaks applications that use of these headers *Brendan Ribera* * Ensure that enhancements to assets:precompile task are only run once *Sam Pohlenz* * TestCase should respect the view_assigns API instead of pulling variables on its own. *Jos Valim* * javascript_path and stylesheet_path now refer to /assets if asset pipelining is on. *Santiago Pastorino* * button_to support form option. Now you're able to pass for example 'data-type' => 'json'. *ihower* * image_path and image_tag should use /assets if asset pipelining is turned on. Closes #3126 *Santiago Pastorino and christos* * Avoid use of existing precompiled assets during rake assets:precompile run. Closes #3119 *Guillermo Iguaran* * Copy assets to nondigested filenames too *Santiago Pastorino* * Give precedence to `config.digest = false` over the existence of manifest.yml asset digests *christos* * escape options for the stylesheet_link_tag method *Alexey Vakhov* * Re-launch assets:precompile task using (Rake.)ruby instead of Kernel.exec so it works on Windows *cablegram* * env var passed to process shouldn't be modified in process method. [Santiago Pastorino] * `rake assets:precompile` loads the application but does not initialize it. To the app developer, this means configuration add in config/initializers/* will not be executed. Plugins developers need to special case their initializers that are meant to be run in the assets group by adding :group => :assets. *Jos Valim* * Sprockets uses config.assets.prefix for asset_path *asee* * FileStore key_file_path properly limit filenames to 255 characters. *phuibonhoa* * Fix Hash#to_query edge case with html_safe strings. *brainopia* * Allow asset tag helper methods to accept :digest => false option in order to completely avoid the digest generation. Useful for linking assets from static html files or from emails when the user could probably look at an older html email with an older asset. *Santiago Pastorino* * Don't mount Sprockets server at config.assets.prefix if config.assets.compile is false. *Mark J. Titorenko* * Set relative url root in assets when controller isn't available for Sprockets (eg. Sass files using asset_path). Fixes #2435 *Guillermo Iguaran* * Fix basic auth credential generation to not make newlines. GH #2882 * Fixed the behavior of asset pipeline when config.assets.digest and config.assets.compile are false and requested asset isn't precompiled. Before the requested asset were compiled anyway ignoring that the config.assets.compile flag is false. *Guillermo Iguaran* * CookieJar is now Enumerable. Fixes #2795 * Fixed AssetNotPrecompiled error raised when rake assets:precompile is compiling certain .erb files. See GH #2763 #2765 #2805 *Guillermo Iguaran* * Manifest is correctly placed in assets path when default assets prefix is changed. Fixes #2776 *Guillermo Iguaran* * Fixed stylesheet_link_tag and javascript_include_tag to respect additional options passed by the users when debug is on. *Guillermo Iguaran* * Fix ActiveRecord#exists? when passsed a nil value * Fix assert_select_email to work on multipart and non-multipart emails as the method stopped working correctly in Rails 3.x due to changes in the new mail gem. ## Rails 3.1.0 (August 30, 2011) ## * Param values are `paramified` in controller tests. *David Chelimsky* * x_sendfile_header now defaults to nil and config/environments/production.rb doesn't set a particular value for it. This allows servers to set it through X-Sendfile-Type. *Santiago Pastorino* * The submit form helper does not generate an id "object_name_id" anymore. *fbrusatti* * Make sure respond_with with :js tries to render a template in all cases *Jos Valim* * json_escape will now return a SafeBuffer string if it receives SafeBuffer string *tenderlove* * Make sure escape_js returns SafeBuffer string if it receives SafeBuffer string *Prem Sichanugrist* * Fix escape_js to work correctly with the new SafeBuffer restriction *Paul Gallagher* * Brought back alternative convention for namespaced models in i18n *thoefer* Now the key can be either "namespace.model" or "namespace/model" until further deprecation. * It is prohibited to perform a in-place SafeBuffer mutation *tenderlove* The old behavior of SafeBuffer allowed you to mutate string in place via method like `sub!`. These methods can add unsafe strings to a safe buffer, and the safe buffer will continue to be marked as safe. An example problem would be something like this: <%= link_to('hello world', @user).sub!(/hello/, params[:xss]) %> In the above example, an untrusted string (`params[:xss]`) is added to the safe buffer returned by `link_to`, and the untrusted content is successfully sent to the client without being escaped. To prevent this from happening `sub!` and other similar methods will now raise an exception when they are called on a safe buffer. In addition to the in-place versions, some of the versions of these methods which return a copy of the string will incorrectly mark strings as safe. For example: <%= link_to('hello world', @user).sub(/hello/, params[:xss]) %> The new versions will now ensure that *all* strings returned by these methods on safe buffers are marked unsafe. You can read more about this change in http://groups.google.com/group/rubyonrails-security/browse_thread/thread/2e516e7acc96c4fb * Warn if we cannot verify CSRF token authenticity *Jos Valim* * Allow AM/PM format in datetime selectors *Aditya Sanghi* * Only show dump of regular env methods on exception screen (not all the rack crap) *DHH* * auto_link has been removed with no replacement. If you still use auto_link please install the rails_autolink gem: http://github.com/tenderlove/rails_autolink *tenderlove* * Added streaming support, you can enable it with: *Jos Valim* class PostsController < ActionController::Base stream :only => :index end Please read the docs at `ActionController::Streaming` for more information. * Added `ActionDispatch::Request.ignore_accept_header` to ignore accept headers and only consider the format given as parameter *Jos Valim* * Created `ActionView::Renderer` and specified an API for `ActionView::Context`, check those objects for more information *Jos Valim* * Added `ActionController::ParamsWrapper` to wrap parameters into a nested hash, and will be turned on for JSON request in new applications by default *Prem Sichanugrist* This can be customized by setting `ActionController::Base.wrap_parameters` in `config/initializer/wrap_parameters.rb` * RJS has been extracted out to a gem. *fxn* * Implicit actions named not_implemented can be rendered. *Santiago Pastorino* * Wildcard route will always match the optional format segment by default. *Prem Sichanugrist* For example if you have this route: map '*pages' => 'pages#show' by requesting '/foo/bar.json', your `params[:pages]` will be equals to "foo/bar" with the request format of JSON. If you want the old 3.0.x behavior back, you could supply `:format => false` like this: map '*pages' => 'pages#show', :format => false * Added Base.http_basic_authenticate_with to do simple http basic authentication with a single class method call *DHH* class PostsController < ApplicationController USER_NAME, PASSWORD = "dhh", "secret" before_filter :authenticate, :except => [ :index ] def index render :text => "Everyone can see me!" end def edit render :text => "I'm only accessible if you know the password" end private def authenticate authenticate_or_request_with_http_basic do |user_name, password| user_name == USER_NAME && password == PASSWORD end end end ..can now be written as class PostsController < ApplicationController http_basic_authenticate_with :name => "dhh", :password => "secret", :except => :index def index render :text => "Everyone can see me!" end def edit render :text => "I'm only accessible if you know the password" end end * Allow you to add `force_ssl` into controller to force browser to transfer data via HTTPS protocol on that particular controller. You can also specify `:only` or `:except` to specific it to particular action. *DHH and Prem Sichanugrist* * Allow FormHelper#form_for to specify the :method as a direct option instead of through the :html hash *DHH* form_for(@post, remote: true, method: :delete) instead of form_for(@post, remote: true, html: { method: :delete }) * Make JavaScriptHelper#j() an alias for JavaScriptHelper#escape_javascript() -- note this then supersedes the Object#j() method that the JSON gem adds within templates using the JavaScriptHelper *DHH* * Sensitive query string parameters (specified in config.filter_parameters) will now be filtered out from the request paths in the log file. *Prem Sichanugrist, fxn* * URL parameters which return false for to_param now appear in the query string (previously they were removed) *Andrew White* * URL parameters which return nil for to_param are now removed from the query string *Andrew White* * ActionDispatch::MiddlewareStack now uses composition over inheritance. It is no longer an array which means there may be methods missing that were not tested. * Add an :authenticity_token option to form_tag for custom handling or to omit the token (pass :authenticity_token => false). *Jakub Kuma, Igor Wiedler* * HTML5 button_tag helper. *Rizwan Reza* * Template lookup now searches further up in the inheritance chain. *Artemave* * Brought back config.action_view.cache_template_loading, which allows to decide whether templates should be cached or not. *Piotr Sarnacki* * url_for and named url helpers now accept :subdomain and :domain as options, *Josh Kalderimis* * The redirect route method now also accepts a hash of options which will only change the parts of the url in question, or an object which responds to call, allowing for redirects to be reused (check the documentation for examples). *Josh Kalderimis* * Added config.action_controller.include_all_helpers. By default 'helper :all' is done in ActionController::Base, which includes all the helpers by default. Setting include_all_helpers to false will result in including only application_helper and helper corresponding to controller (like foo_helper for foo_controller). *Piotr Sarnacki* * Added a convenience idiom to generate HTML5 data-* attributes in tag helpers from a :data hash of options: tag("div", :data => {:name => 'Stephen', :city_state => %w(Chicago IL)}) # => <div data-name="Stephen" data-city-state="[&quot;Chicago&quot;,&quot;IL&quot;]" /> Keys are dasherized. Values are JSON-encoded, except for strings and symbols. *Stephen Celis* * Deprecate old template handler API. The new API simply requires a template handler to respond to call. *Jos Valim* * :rhtml and :rxml were finally removed as template handlers. *Jos Valim* * Moved etag responsibility from ActionDispatch::Response to the middleware stack. *Jos Valim* * Rely on Rack::Session stores API for more compatibility across the Ruby world. This is backwards incompatible since Rack::Session expects #get_session to accept 4 arguments and requires #destroy_session instead of simply #destroy. *Jos Valim* * file_field automatically adds :multipart => true to the enclosing form. *Santiago Pastorino* * Renames csrf_meta_tag -> csrf_meta_tags, and aliases csrf_meta_tag for backwards compatibility. *fxn* * Add Rack::Cache to the default stack. Create a Rails store that delegates to the Rails cache, so by default, whatever caching layer you are using will be used for HTTP caching. Note that Rack::Cache will be used if you use #expires_in, #fresh_when or #stale with :public => true. Otherwise, the caching rules will apply to the browser only. *Yehuda Katz, Carl Lerche*
-rw-r--r--www/ruby-actionpack31/DESCR5
-rw-r--r--www/ruby-actionpack31/Makefile26
-rw-r--r--www/ruby-actionpack31/PLIST192
-rw-r--r--www/ruby-actionpack31/distinfo5
4 files changed, 228 insertions, 0 deletions
diff --git a/www/ruby-actionpack31/DESCR b/www/ruby-actionpack31/DESCR
new file mode 100644
index 00000000000..c5b96ca5cc4
--- /dev/null
+++ b/www/ruby-actionpack31/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-actionpack31/Makefile b/www/ruby-actionpack31/Makefile
new file mode 100644
index 00000000000..8e7a7fbcc18
--- /dev/null
+++ b/www/ruby-actionpack31/Makefile
@@ -0,0 +1,26 @@
+# $NetBSD: Makefile,v 1.1.1.1 2011/12/16 12:26:29 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)
+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}-i18n>=0.6<1:../../devel/ruby-i18n
+DEPENDS+= ${RUBY_PKGPREFIX}-rack>=1.3.5<1.4:../../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}-rack-mount>=0.8.2<0.9:../../www/ruby-rack-mount
+DEPENDS+= ${RUBY_PKGPREFIX}-sprockets>=2.0.3<2.1:../../misc/ruby-sprockets
+DEPENDS+= ${RUBY_PKGPREFIX}-erubis>=2.7.0<2.8:../../www/ruby-erubis
+
+RUBY_RAILS_SUPPORTED= 31
+
+.include "../../lang/ruby/gem.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/www/ruby-actionpack31/PLIST b/www/ruby-actionpack31/PLIST
new file mode 100644
index 00000000000..8bddd00119f
--- /dev/null
+++ b/www/ruby-actionpack31/PLIST
@@ -0,0 +1,192 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2011/12/16 12:26:30 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/callbacks.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/closed_error.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/cookies.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/reloader.rb
+${GEM_LIBDIR}/lib/action_dispatch/middleware/remote_ip.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/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.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/data/encoding_conversions.txt
+${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/handler.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-actionpack31/distinfo b/www/ruby-actionpack31/distinfo
new file mode 100644
index 00000000000..d8900230c68
--- /dev/null
+++ b/www/ruby-actionpack31/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2011/12/16 12:26:29 taca Exp $
+
+SHA1 (actionpack-3.1.3.gem) = 3869fcc993a4b4cdbed14bb0b03d12d2beeb6802
+RMD160 (actionpack-3.1.3.gem) = b9d474a97e3f64535c094d133bd337329d888acd
+Size (actionpack-3.1.3.gem) = 369664 bytes