Sha256: 1322b8d99beffa9dee16dc10f4c1354b6d7801ceb4863173b59555f85d449a96
Contents?: true
Size: 914 Bytes
Versions: 1
Compression:
Stored size: 914 Bytes
Contents
# See Pagy::Countless API documentation: https://ddnexus.github.io/pagy/api/calendar # frozen_string_literal: true class Pagy # :nodoc: class Calendar # :nodoc: # Calendar year subclass class Year < Calendar DEFAULT = { order: :asc, # rubocop:disable Style/MutableConstant format: '%Y' } protected # Setup the calendar variables def setup_unit_vars super @initial = @starting.beginning_of_year @final = @ending.next_year.beginning_of_year @pages = @last = @final.year - @initial.year @from = starting_time_for(@page) @to = @from.next_year end # Starting time for the page def starting_time_for(page) @initial.years_since(time_offset_for(page)) end def page_offset_at(time) time.beginning_of_year.year - @initial.year end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pagy-6.0.0 | lib/pagy/calendar/year.rb |