diff --git a/www/rubygem-actionpack70/Makefile b/www/rubygem-actionpack70/Makefile index 1a74f8db2177..487256026c4d 100644 --- a/www/rubygem-actionpack70/Makefile +++ b/www/rubygem-actionpack70/Makefile @@ -1,29 +1,29 @@ PORTNAME= actionpack PORTVERSION= 7.0.3.1 -PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 70 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-actionview70>=${PORTVERSION}:devel/rubygem-actionview70 \ - rubygem-activesupport70>=${PORTVERSION}:devel/rubygem-activesupport70 \ +RUN_DEPENDS= rubygem-actionview70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-actionview70 \ + rubygem-activesupport70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport70 \ rubygem-rack22>=2.2.0,3<3,3:www/rubygem-rack22 \ rubygem-rack-test>=0.6.3:www/rubygem-rack-test \ rubygem-rails-dom-testing-rails70>=2.0<3:textproc/rubygem-rails-dom-testing-rails70 \ rubygem-rails-html-sanitizer>=1.2.0<2:textproc/rubygem-rails-html-sanitizer USES= gem USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^7\.0\. .include diff --git a/www/rubygem-actionpack70/pkg-descr b/www/rubygem-actionpack70/pkg-descr index adfeb3113c52..2f8df748c74a 100644 --- a/www/rubygem-actionpack70/pkg-descr +++ b/www/rubygem-actionpack70/pkg-descr @@ -1,21 +1,19 @@ 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. - -See also: https://rubyonrails.org/