Update ruby-actionpack32 to 3.9.2.

## Rails 3.2.9 (unreleased) ##

*   Clear url helpers when reloading routes.

    *Santiago Pastorino*

*   Revert the shorthand routes scoped with `:module` option fix
    This added a regression since it is changing the URL mapping.
    This makes the stable release backward compatible.

    *Rafael Mendonça França*

*   Revert the `assert_template` fix to not pass with ever string that matches the template name.
    This added a regression since people were relying on this buggy behavior.
    This will introduce back #3849 but this stable release will be backward compatible.
    Fixes #8068.

    *Rafael Mendonça França*

*   Revert the rename of internal variable on ActionController::TemplateAssertions to prevent
    naming collisions. This added a regression related with shoulda-matchers, since it is
    expecting the [instance variable @layouts](9e1188eea6/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb (L74)).
    This will introduce back #7459 but this stable release will be backward compatible.
    Fixes #8068.

    *Rafael Mendonça França*

*   Accept :remote as symbolic option for `link_to` helper. *Riley Lynch*

*   Warn when the `:locals` option is passed to `assert_template` outside of a view test case
    Fix #3415

    *Yves Senn*

*   Rename internal variables on ActionController::TemplateAssertions to prevent
    naming collisions. @partials, @templates and @layouts are now prefixed with an underscore.
    Fix #7459

    *Yves Senn*

*   `resource` and `resources` don't modify the passed options hash
    Fix #7777

    *Yves Senn*

*   Precompiled assets include aliases from foo.js to foo/index.js and vice versa.

        # Precompiles phone-<digest>.css and aliases phone/index.css to phone.css.
        config.assets.precompile = [ 'phone.css' ]

        # Precompiles phone/index-<digest>.css and aliases phone.css to phone/index.css.
        config.assets.precompile = [ 'phone/index.css' ]

        # Both of these work with either precompile thanks to their aliases.
        <%= stylesheet_link_tag 'phone', media: 'all' %>
        <%= stylesheet_link_tag 'phone/index', media: 'all' %>

    *Jeremy Kemper*

*   `assert_template` is no more passing with what ever string that matches
    with the template name.

    Before when we have a template `/layout/hello.html.erb`, `assert_template`
    was passing with any string that matches. This behavior allowed false
    positive like:

        assert_template "layout"
        assert_template "out/hello"

    Now it only passes with:

        assert_template "layout/hello"
        assert_template "hello"

    Fixes #3849.

    *Hugolnx*

*   Handle `ActionDispatch::Http::UploadedFile` like `Rack::Test::UploadedFile`, don't call to_param on it. Since
    `Rack::Test::UploadedFile` isn't API compatible this is needed to test file uploads that rely on `tempfile`
    being available.

    *Tim Vandecasteele*

*   Respect `config.digest = false` for `asset_path`

    Previously, the `asset_path` internals only respected the `:digest`
    option, but ignored the global config setting. This meant that
    `config.digest = false` could not be used in conjunction with
    `config.compile = false` this corrects the behavior.

    *Peter Wagenet*

*   Fix #7646, the log now displays the correct status code when an exception is raised.

    *Yves Senn*

*   Fix handling of date selects when using both disabled and discard options.
    Fixes #7431.

    *Vasiliy Ermolovich*

*   Fix select_tag when option_tags is nil.
    Fixes #7404.

    *Sandeep Ravichandran*

*   `javascript_include_tag :all` will now not include `application.js` if the file does not exists. *Prem Sichanugrist*

*   Support cookie jar options (e.g., domain :all) for all session stores.
    Fixes GH#3047, GH#2483.

    *Ravil Bayramgalin*

*   Performance Improvement to send_file: Avoid having to pass an open file handle as the response body. Rack::Sendfile
    will usually intercept the response and just uses the path directly, so no reason to open the file. This performance
    improvement also resolves an issue with jRuby encodings, and is the reason for the backport, see issue #6844.

    *Jeremy Kemper & Erich Menge*
This commit is contained in:
taca 2012-12-16 14:11:35 +00:00
parent 9a879c8a9f
commit 8991836732
2 changed files with 7 additions and 7 deletions

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.3 2012/06/14 15:12:15 taca Exp $
# $NetBSD: Makefile,v 1.4 2012/12/16 14:11:35 taca Exp $
DISTNAME= actionpack-${RUBY_RAILS_VERSION}
CATEGORIES= www
@ -15,8 +15,8 @@ DEPENDS+= ${RUBY_ACTIVEMODEL_DEPENDS}
DEPENDS+= ${RUBY_PKGPREFIX}-rack>=1.4.0<1.5:../../www/ruby-rack
DEPENDS+= ${RUBY_PKGPREFIX}-rack-cache>=1.2<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.3<2.2:../../misc/ruby-sprockets21
DEPENDS+= ${RUBY_PKGPREFIX}-journey>=1.0.4<1.1:../../www/ruby-journey
DEPENDS+= ${RUBY_PKGPREFIX}-sprockets>=2.2.1<2.3:../../misc/ruby-sprockets22
DEPENDS+= ${RUBY_PKGPREFIX}-erubis>=2.7.0<2.8:../../www/ruby-erubis
RUBY_RAILS_SUPPORTED= 32

View file

@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.6 2012/08/12 12:40:00 taca Exp $
$NetBSD: distinfo,v 1.7 2012/12/16 14:11:35 taca Exp $
SHA1 (actionpack-3.2.8.gem) = ccc63cc2fcb3131b92d45cf5834aa629857d7258
RMD160 (actionpack-3.2.8.gem) = ec71996e73831ea346d8e060234a7f7a73881908
Size (actionpack-3.2.8.gem) = 379392 bytes
SHA1 (actionpack-3.2.9.gem) = 8c3657514132ae21d2da2abcad896d8f37c4f1ca
RMD160 (actionpack-3.2.9.gem) = 2542e1e2daffee7c6f5ef80d2fc7949c63c66000
Size (actionpack-3.2.9.gem) = 288256 bytes