c90b4405ff
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. This is for Ruby on Rails 5.1.
20 lines
640 B
Makefile
20 lines
640 B
Makefile
# $NetBSD: Makefile,v 1.1 2018/03/21 09:57:59 taca Exp $
|
|
|
|
DISTNAME= actioncable-${RAILS_VERSION}
|
|
PKGNAME= ${RUBY_PKGPREFIX}-actioncable${RUBY_RAILS}-${RAILS_VERSION}
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.rubyonrails.org/
|
|
COMMENT= Toolkit for building modeling frameworks (part of Rails 5.1)
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${RUBY_ACTIONPACK_DEPENDS}
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-nio4r>=2.0:../../net/ruby-nio4r
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-websocket-driver>=0.6.1:../../www/ruby-websocket-driver
|
|
|
|
RUBY_RAILS_ACCEPTED= 51
|
|
RUBY_RAILS_STRICT_DEP= yes
|
|
|
|
.include "../../lang/ruby/gem.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|