mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
27a4e6076b
using InstanceMethods is deprecated since 401393b656
15 lines
226 B
Ruby
15 lines
226 B
Ruby
module Kaminari
|
|
module PluckyCriteriaMethods
|
|
def limit_value #:nodoc:
|
|
options[:limit]
|
|
end
|
|
|
|
def offset_value #:nodoc:
|
|
options[:skip]
|
|
end
|
|
|
|
def total_count #:nodoc:
|
|
count
|
|
end
|
|
end
|
|
end
|