477b4384ff
3.1.5 * Avoid Rails 5 deprecation warning about original_exception * No longer generates <a rel="start"> for first page link since "start" is an invalid rel value 3.1.4 (seems not released) 3.1.3 * Rails 5 compatibility for inheriting query params in pagination links * Fix locale load path so that application can override will_paginate's built-in translations. 3.1.2 * Further fix security vulnerability when generating pagination URLs in Rails. 3.1.1 * Fixed security vulnerability when generating pagination URLs in Rails. 3.1.0 * Rails 5.0 support * Drop support for old Active Record finder params to paginate(): # now unsupported: User.paginate(:page => 1, :order => 'created_at DESC', :conditions => ...) # convert to Arel syntax instead: User.order('created_at DESC').where(...).paginate(:page => 1) # or, even better: User.order('created_at DESC').where(...).page(1) * Add support for pagination with Mongoid
13 lines
374 B
Makefile
13 lines
374 B
Makefile
# $NetBSD: Makefile,v 1.11 2016/10/20 15:12:21 taca Exp $
|
|
|
|
DISTNAME= will_paginate-3.1.5
|
|
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:S/_/-/}
|
|
CATEGORIES= textproc
|
|
LICENSE= mit
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://github.com/mislav/will_paginate/wikis
|
|
COMMENT= Pagination for views of model queries
|
|
|
|
.include "../../lang/ruby/gem.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|