A session store backed by an Active Record class. A default class is provided, but any object duck-typing to an Active Record Session class with text session_id and data attributes is sufficient. WWW: https://github.com/rails/activerecord-session_store
24 lines
641 B
Makefile
24 lines
641 B
Makefile
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= activerecord-session_store
|
|
PORTVERSION= 0.1.2
|
|
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:${PORTSDIR}/www/rubygem-actionpack4 \
|
|
rubygem-activerecord4>=4.0.0:${PORTSDIR}/databases/rubygem-activerecord4 \
|
|
rubygem-railties4>=4.0.0:${PORTSDIR}/www/rubygem-railties4
|
|
|
|
NO_ARCH= yes
|
|
USE_RUBY= yes
|
|
USE_RUBYGEMS= yes
|
|
RUBYGEM_AUTOPLIST= yes
|
|
|
|
.include <bsd.port.mk>
|