diff --git a/www/rubygem-actionpack61/Makefile b/www/rubygem-actionpack61/Makefile index 020534e7199d..c39105ae143b 100644 --- a/www/rubygem-actionpack61/Makefile +++ b/www/rubygem-actionpack61/Makefile @@ -1,29 +1,29 @@ # Created by: Jonathan Weiss () PORTNAME= actionpack -PORTVERSION= 6.1.4.1 +PORTVERSION= 6.1.4.4 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Action Controller and Action View of Rails MVC Framework LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview61>=${PORTVERSION}:devel/rubygem-actionview61 \ rubygem-activesupport61>=${PORTVERSION}:devel/rubygem-activesupport61 \ rubygem-rack>=2.0.9,3<3,3:www/rubygem-rack \ rubygem-rack-test>=0.6.3:www/rubygem-rack-test \ rubygem-rails-dom-testing-rails61>=2.0<3:textproc/rubygem-rails-dom-testing-rails61 \ rubygem-rails-html-sanitizer>=1.2.0<2:textproc/rubygem-rails-html-sanitizer USES= gem USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.1\. .include diff --git a/www/rubygem-actionpack61/distinfo b/www/rubygem-actionpack61/distinfo index b728fb48076d..1351c4f97ec4 100644 --- a/www/rubygem-actionpack61/distinfo +++ b/www/rubygem-actionpack61/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1632664522 -SHA256 (rubygem/actionpack-6.1.4.1.gem) = 2a5e0af9f561e8b7f27b1f4088a3d6d4283ec7eaa283f0db345ecb152dd6fe75 -SIZE (rubygem/actionpack-6.1.4.1.gem) = 225280 +TIMESTAMP = 1641046832 +SHA256 (rubygem/actionpack-6.1.4.4.gem) = 697b894d9f80e6a83f8edba9710bc7439104137533fc1f300b6266888c6a319c +SIZE (rubygem/actionpack-6.1.4.4.gem) = 225280 diff --git a/www/rubygem-actionpack61/pkg-descr b/www/rubygem-actionpack61/pkg-descr index f424cc62f012..d46bb2b3cb0b 100644 --- a/www/rubygem-actionpack61/pkg-descr +++ b/www/rubygem-actionpack61/pkg-descr @@ -1,23 +1,23 @@ 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 by rendering views, which are templates of various formats. In short, Action Pack provides the view and controller layers 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. WWW: https://rubyonrails.org/ -WWW: https://github.com/rails/rails/tree/master/actionpack +WWW: https://github.com/rails/rails/tree/main/actionpack