Sha256: 6229a89c6006ad1e252e46f182fcec41ad2d75d292ea2bd89ab29cf07a06b47c
Contents?: true
Size: 324 Bytes
Versions: 5
Compression:
Stored size: 324 Bytes
Contents
module KonoUtils ## # Simple PORO to proxyng the pagination operations class PaginateProxer attr_accessor :collection def initialize(collection) @collection = collection end def paginate(params={}) raise "TO Override with the correct pagination method of the gem used" end end end
Version data entries
5 entries across 5 versions & 1 rubygems