forked from Lainports/freebsd-ports
- Add rake task to trim old sessions. - Fix compatibility with Syslog::Logger. - Add configurable serializer. - Fix compatibility issue with Rails 5.0. - Fix Thread.exclusive deprecation warning in Ruby 2.3. - Fix Syslog::Logger compatibility. Approved by: swills (mentor)
25 lines
676 B
Makefile
25 lines
676 B
Makefile
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= activerecord-session_store
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= databases rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Action Dispatch session store backed by an Active Record class
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
|
|
|
|
RUN_DEPENDS= rubygem-actionpack4>=4.0.0:www/rubygem-actionpack4 \
|
|
rubygem-activerecord4>=4.0.0:databases/rubygem-activerecord4 \
|
|
rubygem-multi_json>=1.11.2:devel/rubygem-multi_json \
|
|
rubygem-rack15>=1.5.2:www/rubygem-rack15 \
|
|
rubygem-railties4>=4.0.0:www/rubygem-railties4
|
|
|
|
NO_ARCH= yes
|
|
USE_RUBY= yes
|
|
USES= gem
|
|
|
|
.include <bsd.port.mk>
|