Sha256: 81ee9c1017fea801e476bf8dcb3cb3f2ef8cd37526d4372604258cd54a360843
Contents?: true
Size: 1.07 KB
Versions: 15
Compression:
Stored size: 1.07 KB
Contents
# See Pagy::Countless API documentation: https://ddnexus.github.io/pagy/docs/api/calendar # frozen_string_literal: true class Pagy # :nodoc: class Calendar # :nodoc: # Calendar month subclass class Month < Calendar DEFAULT = { size: 12, # rubocop:disable Style/MutableConstant order: :asc, format: '%b' } protected # Setup the calendar variables def setup_unit_vars super @initial = @starting.beginning_of_month @final = @ending.next_month.beginning_of_month @pages = @last = (months_in(@final) - months_in(@initial)) @from = starting_time_for(@page) @to = @from.next_month end # Starting time for the page def starting_time_for(page) @initial.months_since(time_offset_for(page)) end def page_offset_at(time) months_in(time.beginning_of_month) - months_in(@initial) end private # Number of months in time def months_in(time) (time.year * 12) + time.month end end end end
Version data entries
15 entries across 15 versions & 1 rubygems