9b45481379
Rack::Cache is suitable as a quick drop-in component to enable HTTP caching for Rack-based applications that produce freshness (Expires, Cache-Control) and/or validation (Last-Modified, ETag) information. Standards-based (see RFC 2616 / Section 13). Freshness/expiration based caching Validation Vary support Portable: 100% Ruby / works with any Rack-enabled framework. Disk, memcached, and heap memory storage backends. OK claudio@
24 lines
476 B
Makefile
24 lines
476 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/12/13 17:38:07 jeremy Exp $
|
|
|
|
COMMENT = HTTP Caching for Rack
|
|
|
|
DISTNAME = rack-cache-1.1
|
|
CATEGORIES = www
|
|
|
|
HOMEPAGE = http://rtomayko.github.com/rack-cache/
|
|
|
|
# MIT License
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MODULES = lang/ruby
|
|
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
RUN_DEPENDS = www/ruby-rack,${MODRUBY_FLAVOR}>=0.4
|
|
|
|
CONFIGURE_STYLE = ruby gem
|
|
|
|
.include <bsd.port.mk>
|