02e3a184bc
Changes: * Backport: allow array and hash query parameters. Array route parameters are converted/to/a/path as before. #6765, #7047, #7462 [bgipsy, Jeremy McAnally, Dan Kubb, brendan, Diego Algorta Casamayou] * Fix in place editor's setter action with non-string fields. #7418 [Andreas] * Only accept session ids from cookies, prevents session fixation attacks. * Change the resource seperator from ; to / change the generated routes to use the new-style named routes. e.g. new_group_user_path(@group) instead of group_new_user_path(@group). [pixeltrix] * Integration tests: introduce methods for other HTTP methods. #6353 [caboose] * Improve performance of action caching. Closes #8231 [skaes] * Fix errors with around_filters which do not yield, restore 1.1 behaviour with after filters. Closes #8891 [skaes] * Allow you to delete cookies with options. Closes #3685 * Deprecate pagination. Install the classic_pagination plugin for forward compatibility, or move to the superior will_paginate plugin. #8157 * Fix filtered parameter logging with nil parameter values. #8422 [choonkeat] * Integration tests: alias xhr to xml_http_request and add a request_method argument instead of always using POST. #7124 * Document caches_action. #5419 [Jarkko Laine] * observe_form always sends the serialized form. #5271 * Update UrlWriter to accept :anchor parameter. Closes #6771. [octopod] * Replace the current block/continuation filter chain handling by an implementation based on a simple loop. Closes #8226 [Stefan Kaes] * Return the string representation from an Xml Builder when rendering a partial. #5044 [tpope] * Cleaned up, corrected, and mildly expanded ActionPack documentation. Closes #7190 [jeremymcanally] * Small collection of ActionController documentation cleanups. Closes #7319 * Performance: patch cgi/session/pstore to require digest/md5 once rather than per #initialize. #7583 [Stefan Kaes] * Deprecation: verification with :redirect_to => :named_route shouldn't be deprecated. #7525 [Justin French]
39 lines
1.3 KiB
Makefile
39 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.9 2007/10/16 03:17:31 minskim Exp $
|
|
|
|
DISTNAME= actionpack-1.13.5
|
|
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= www ruby
|
|
MASTER_SITES= http://rubyforge.org/frs/download.php/26554/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= minskim@NetBSD.org
|
|
HOMEPAGE= http://rubyforge.org/projects/actionpack/
|
|
COMMENT= Two-step approach to web response generation
|
|
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-activesupport>=1.4.4:../../devel/ruby-activesupport
|
|
|
|
NO_BUILD= yes
|
|
USE_RUBY_INSTALL= yes
|
|
EXAMPLESDIR= ${RUBY_EXAMPLESDIR}/actionpack
|
|
|
|
REPLACE_RUBY+= lib/action_controller/session/drb_server.rb
|
|
REPLACE_RUBY+= examples/*.cgi examples/*.fcgi examples/*.rbx
|
|
|
|
.include "../../lang/ruby/modules.mk"
|
|
.include "../../lang/ruby/replace.mk"
|
|
|
|
post-install:
|
|
${INSTALL_DATA} \
|
|
${WRKSRC}/lib/action_controller/templates/rescues/* \
|
|
${RUBY_SITELIBDIR}/action_controller/templates/rescues
|
|
${INSTALL_DATA} \
|
|
${WRKSRC}/lib/action_controller/templates/scaffolds/* \
|
|
${RUBY_SITELIBDIR}/action_controller/templates/scaffolds
|
|
${INSTALL_DATA_DIR} ${RUBY_DOCDIR}/actionpack
|
|
${INSTALL_DATA} ${WRKSRC}/CHANGELOG ${RUBY_DOCDIR}/actionpack
|
|
${INSTALL_DATA} ${WRKSRC}/README ${RUBY_DOCDIR}/actionpack
|
|
${INSTALL_DATA_DIR} ${EXAMPLESDIR}
|
|
${CP} -R ${WRKSRC}/examples/* ${EXAMPLESDIR}
|
|
${CHOWN} -R ${BINOWN}:${BINGRP} ${EXAMPLESDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|