notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
Port details
rubygem-actionpack72 Action Controller and Action View of Rails MVC Framework
7.2.1 wwwnew! on this many watch lists=0 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout Package not present on quarterly.This port was created during this quarter. It will be in the next quarterly branch but not the current one.
Maintainer: sunpoet@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2024-09-18 06:21:50
Last Update: 2024-09-18 06:13:02
Commit Hash: 8d64251
Also Listed In: rubygems
License: MIT
WWW:
https://github.com/rails/rails/tree/main/actionpack
https://rubyonrails.org/
Description:
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.
HomepageHomepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb - no subversion history for this port

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
Expand this list (3 items)
Collapse this list.
  1. /usr/local/share/licenses/rubygem-actionpack72-7.2.1/catalog.mk
  2. /usr/local/share/licenses/rubygem-actionpack72-7.2.1/LICENSE
  3. /usr/local/share/licenses/rubygem-actionpack72-7.2.1/MIT
Collapse this list.
Dependency lines:
  • rubygem-actionpack72>0:www/rubygem-actionpack72
To install the port:
cd /usr/ports/www/rubygem-actionpack72/ && make install clean
To add the package, run one of these commands:
  • pkg install www/rubygem-actionpack72
  • pkg install rubygem-actionpack72
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: rubygem-actionpack72
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1726487300 SHA256 (rubygem/actionpack-7.2.1.gem) = 260b80acc720123f23eb2b106b04d2de7d8cf0492d4eeb2dfa7afc8be36dcaad SIZE (rubygem/actionpack-7.2.1.gem) = 242688

No package information for this port in our database
Sometimes this happens. Not all ports have packages. This is doubly so for new ports, like this one.
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. ruby32 : lang/ruby32
  2. gem : devel/ruby-gems
Runtime dependencies:
  1. rubygem-actionview72>=7.2.1<7.2.1_99 : devel/rubygem-actionview72
  2. rubygem-activesupport72>=7.2.1<7.2.1_99 : devel/rubygem-activesupport72
  3. rubygem-nokogiri>=1.8.5 : textproc/rubygem-nokogiri
  4. rubygem-racc>=0 : devel/rubygem-racc
  5. rubygem-rack>=2.2.4,3<3.2,3 : www/rubygem-rack
  6. rubygem-rack-session>=1.0.1 : www/rubygem-rack-session
  7. rubygem-rack-test>=0.6.3 : www/rubygem-rack-test
  8. rubygem-rails-dom-testing-rails72>=2.2<3 : textproc/rubygem-rails-dom-testing-rails72
  9. rubygem-rails-html-sanitizer>=1.6<2 : textproc/rubygem-rails-html-sanitizer
  10. rubygem-useragent>=0.16<1 : devel/rubygem-useragent
  11. ruby32 : lang/ruby32
  12. gem : devel/ruby-gems
Patch dependencies:
  1. ruby32 : lang/ruby32
  2. gem : devel/ruby-gems
Extract dependencies:
  1. ruby32 : lang/ruby32
This port is required by:
for Run
  1. devel/rubygem-sprockets-rails-rails72
  2. www/rubygem-importmap-rails
  3. www/rubygem-propshaft
  4. www/rubygem-rails72
  5. www/rubygem-railties72
  6. www/rubygem-turbo-rails

Configuration Options:
No options to configure
Options name:
www_rubygem-actionpack72
USES:
gem
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (1 items)
Collapse this list.
  1. https://rubygems.org/downloads/
Collapse this list.

Number of commits found: 1

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
7.2.1
18 Sep 2024 06:13:02
commit hash: 8d64251a115af4f41aeebf2cfed40f05f549e56dcommit hash: 8d64251a115af4f41aeebf2cfed40f05f549e56dcommit hash: 8d64251a115af4f41aeebf2cfed40f05f549e56dcommit hash: 8d64251a115af4f41aeebf2cfed40f05f549e56d files touched by this commit
Po-Chuan Hsieh (sunpoet) search for other commits by this committer
www/rubygem-actionpack72: Add rubygem-actionpack72 7.2.1

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.

Number of commits found: 1