Sha256: 456ab452b76f832c50c73bc93a56f509463d242a5419d61b4619c5b2f55a1254
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
# See Pagy::Countless API documentation: https://ddnexus.github.io/pagy/api/calendar # frozen_string_literal: true class Pagy # :nodoc: class Calendar # :nodoc: # Calendar month subclass class Month < Calendar DEFAULT = { order: :asc, # rubocop:disable Style/MutableConstant format: '%Y-%m' } 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pagy-6.0.0 | lib/pagy/calendar/month.rb |