Path to this page:
./
www/ruby-actionpack80,
Toolkit for building modeling frameworks (part of Rails 8.0)
Branch: CURRENT,
Version: 8.0.2,
Package name: ruby32-actionpack80-8.0.2,
Maintainer: pkgsrc-usersAction Pack -- From request to response
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.
In short, Action Pack provides the controller layer in the MVC paradigm.
It consists of several modules:
* Action Dispatch, which parses information about the web request, handles
routing as defined by the user, and does advanced processing related to
HTTP such as MIME-type negotiation, decoding parameters in POST, PATCH,
or PUT bodies, handling HTTP caching logic, cookies and sessions.
* Action Controller, which provides a base controller class that can be
subclassed to implement filters and actions to handle requests.
The result of an action is typically content generated from views.
With the Ruby on Rails framework, users only directly interface with the
Action Controller module. Necessary Action Dispatch functionality is
activated by default and Action View rendering is implicitly triggered by
Action Controller. However, these modules are designed to function on their
own and can be used outside of Rails.
This is for Ruby on Rails 8.0.
Master sites:
Filesize: 243 KB
Version history: (Expand)
- (2025-03-16) Updated to version: ruby32-actionpack80-8.0.2
- (2025-01-02) Package added to pkgsrc.se, version ruby32-actionpack80-8.0.1 (created)
CVS history: (Expand)
2025-03-16 16:29:52 by Takahiro Kambe | Files touched by this commit (1) |  |
Log message:
www/ruby-actionpack80: update to 8.0.2
8.0.2 (2025/03/12)
* Improve with_routing test helper to not rebuild the middleware stack.
Otherwise some middleware configuration could be lost.
Édouard Chin
* Add resource name to the ArgumentError that's raised when invalid :only or
:except options are given to #resource or #resources
This makes it easier to locate the source of the problem, especially for
routes drawn by gems.
Before:
:only and :except must include only [:index, :create, :new, :show, :update, \
:destroy, :edit], but also included [:foo, :bar]
After:
Route `resources :products` - :only and :except must include only [:index, \
:create, :new, :show, :update, :destroy, :edit], but also included [:foo, :bar]
Jeremy Green
* Fix url_for to handle :path_params gracefully when it's not a Hash.
Prevents various security scanners from causing exceptions.
Martin Emde
* Fix ActionDispatch::Executor to unwrap exceptions like other error
reporting middlewares.
Jean Boussier
|
2025-01-23 09:02:14 by Thomas Klausner | Files touched by this commit (13) |
Log message:
*: Rails 8.0 is not available for Ruby 3.1
|
2025-01-02 08:10:55 by Takahiro Kambe | Files touched by this commit (4) |
Log message:
www/ruby-actionpack80: add package version 8.0.1
Action Pack -- From request to response
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.
In short, Action Pack provides the controller layer in the MVC paradigm.
It consists of several modules:
* Action Dispatch, which parses information about the web request, handles
routing as defined by the user, and does advanced processing related to
HTTP such as MIME-type negotiation, decoding parameters in POST, PATCH,
or PUT bodies, handling HTTP caching logic, cookies and sessions.
* Action Controller, which provides a base controller class that can be
subclassed to implement filters and actions to handle requests.
The result of an action is typically content generated from views.
With the Ruby on Rails framework, users only directly interface with the
Action Controller module. Necessary Action Dispatch functionality is
activated by default and Action View rendering is implicitly triggered by
Action Controller. However, these modules are designed to function on their
own and can be used outside of Rails.
This is for Ruby on Rails 8.0.
|