Path to this page:
NOTICE: This package has been removed from pkgsrc./
www/ruby-actionpack42,
Toolkit for building modeling frameworks (part of Rails 4.2)
Branch: CURRENT,
Version: 4.2.11.1,
Package name: ruby24-actionpack42-4.2.11.1,
Maintainer: pkgsrc-usersAction 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.
Required to run:[
devel/ruby-activesupport42] [
www/ruby-actionview42] [
www/ruby-rack16] [
lang/ruby24-base] [
www/ruby-rack-test06]
Required to build:[
pkgtools/cwrappers]
Master sites:
SHA1: 42a86ad094debe09efec39f4df8baa0e8b4a6e0f
RMD160: 37583dbb7df890606bf9408fbf91fb3f886bdc0e
Filesize: 182.5 KB
Version history: (Expand)
- (2020-03-22) Package deleted from pkgsrc
- (2019-04-14) Updated to version: ruby24-actionpack42-4.2.11.1
- (2019-03-03) Updated to version: ruby24-actionpack42-4.2.11nb1
- (2018-11-29) Updated to version: ruby24-actionpack42-4.2.11
- (2018-03-13) Updated to version: ruby24-actionpack42-4.2.10
- (2017-07-18) Updated to version: ruby23-actionpack42-4.2.8nb1
CVS history: (Expand)
2020-03-21 16:41:17 by Takahiro Kambe | Files touched by this commit (4) | |
Log message:
www/ruby-actionpack42: remove pacakge
Remove ruby-actionpack42 package, a part of Ruby on Rails 4.2 package.
|
2019-04-14 12:14:25 by Takahiro Kambe | Files touched by this commit (2) | |
Log message:
www/ruby-actionpack42: update to 4.2.11.1
## Rails 4.2.11.1 (March 11, 2019) ##
* Fix [CVE-2019-5418] and [CVE-2019-5419].
|
2019-03-03 15:38:52 by Takahiro Kambe | Files touched by this commit (1) |
Log message:
www/ruby-actionpack42: depends on ruby-rack-test06
Change dependency from ruby-rack-test to ruby-rack-test06.
Bump PKGREVISION.
|
2018-11-29 14:52:12 by Takahiro Kambe | Files touched by this commit (1) | |
Log message:
www/ruby-actionpack42: update to 4.2.11
No change except version.
|
2018-03-18 15:21:22 by Takahiro Kambe | Files touched by this commit (37) |
Log message:
lang/ruby: replace RUBY_RAILS_SUPPORTED to RUBY_RAILS_ACCEPTED
Change RUBY_RAILS_SUPPORTED to RUBY_RAILS_ACCEPTED for better wording.
|
2018-03-13 17:35:25 by Takahiro Kambe | Files touched by this commit (2) | |
Log message:
www/ruby-actionpack42: update to 4.2.10
pkgsrc change: switch to depends on textproc/ruby-rails-dom-testing1
## Rails 4.2.10 (September 27, 2017) ##
* Fix regression in behavior of `normalize_path`.
In Rails 5 there was a change to ensure the encoding of the original string
in a path was maintained. This was incorrectly backported to Rails 4.2 which
caused a regression.
*Eileen M. Uchitelle*
## Rails 4.2.9 (June 26, 2017) ##
* Use more specific check for :format in route path
The current check for whether to add an optional format to the path is very lax
and will match things like `:format_id` where there are nested resources, e.g:
``` ruby
resources :formats do
resources :items
end
```
Fix this by using a more restrictive regex pattern that looks for the patterns
`(.:format)`, `.:format` or `/` at the end of the path. Note that we need to
allow for multiple closing parenthesis since the route may be of this form:
``` ruby
get "/books(/:action(.:format))", controller: "books"
```
This probably isn't what's intended since it means that the default index action
route doesn't support a format but we have a test for it so we need to allow it.
Fixes #28517.
*Andrew White*
|
2017-07-18 16:38:52 by Takahiro Kambe | Files touched by this commit (1) |
Log message:
Reduce dependency to packages: comment out dependencies which already has
ruby-actionview.
Bump PKGREVISION.
|
2017-06-21 15:12:21 by Takahiro Kambe | Files touched by this commit (19) | |
Log message:
Switch most of Ruby on Rails related packages to updated frame work.
|