diff --git a/www/rubygem-actionpack61/Makefile b/www/rubygem-actionpack61/Makefile index b59254cfa9f3..abb1b46c1428 100644 --- a/www/rubygem-actionpack61/Makefile +++ b/www/rubygem-actionpack61/Makefile @@ -1,29 +1,29 @@ PORTNAME= actionpack -PORTVERSION= 6.1.6.1 -PORTREVISION= 1 +PORTVERSION= 6.1.7 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Action Controller and Action View of Rails MVC Framework -WWW= https://github.com/rails/rails/tree/main/actionpack +WWW= https://github.com/rails/rails/tree/main/actionpack \ + https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE -RUN_DEPENDS= rubygem-actionview61>=${PORTVERSION}:devel/rubygem-actionview61 \ - rubygem-activesupport61>=${PORTVERSION}:devel/rubygem-activesupport61 \ +RUN_DEPENDS= rubygem-actionview61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-actionview61 \ + rubygem-activesupport61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport61 \ rubygem-rack22>=2.0.9,3<3,3:www/rubygem-rack22 \ 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 3a70d52f6f14..d7ae45bcac5b 100644 --- a/www/rubygem-actionpack61/distinfo +++ b/www/rubygem-actionpack61/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1657835575 -SHA256 (rubygem/actionpack-6.1.6.1.gem) = f3e0a82a62aa36fecadbacbb266e38338da032f18aaf97674f335671b420bdd4 -SIZE (rubygem/actionpack-6.1.6.1.gem) = 226304 +TIMESTAMP = 1669058253 +SHA256 (rubygem/actionpack-6.1.7.gem) = 3a8580e3721757371328906f953b332d5c95bd56a1e4f344b3fee5d55dc1cf37 +SIZE (rubygem/actionpack-6.1.7.gem) = 226304 diff --git a/www/rubygem-actionpack61/pkg-descr b/www/rubygem-actionpack61/pkg-descr index efef1aca62fa..6aaa673d1002 100644 --- a/www/rubygem-actionpack61/pkg-descr +++ b/www/rubygem-actionpack61/pkg-descr @@ -1,22 +1,20 @@ 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. - -See also: https://rubyonrails.org/