Update www/firefox-esr to version 102.5.0,1
[dports.git] / www / rubygem-actionpack50 / pkg-descr
1 Action Pack is a framework for handling and responding to web requests. It
2 provides mechanisms for routing (mapping request URLs to actions), defining
3 controllers that implement actions, and generating responses by rendering views,
4 which are templates of various formats. In short, Action Pack provides the view
5 and controller layers in the MVC paradigm.
6
7 It consists of several modules:
8 - Action Dispatch, which parses information about the web request, handles
9   routing as defined by the user, and does advanced processing related to HTTP
10   such as MIME-type negotiation, decoding parameters in POST, PATCH, or PUT
11   bodies, handling HTTP caching logic, cookies and sessions.
12 - Action Controller, which provides a base controller class that can be
13   subclassed to implement filters and actions to handle requests. The result of
14   an action is typically content generated from views.
15
16 With the Ruby on Rails framework, users only directly interface with the Action
17 Controller module. Necessary Action Dispatch functionality is activated by
18 default and Action View rendering is implicitly triggered by Action Controller.
19 However, these modules are designed to function on their own and can be used
20 outside of Rails.
21
22 See also: https://rubyonrails.org/