module ChartMogul::Concerns::PageableWithAnchor

Public Class Methods

included(base) click to toggle source
# File lib/chartmogul/concerns/pageable_with_anchor.rb, line 6
def self.included(base)
  base.instance_eval do
    readonly_attr :has_more
    readonly_attr :per_page
  end
end