Sha256: c9e0936a2ec20fb0fd2432279110b5ea41015ccb8c2603b360088d1863ce2dbd
Contents?: true
Size: 357 Bytes
Versions: 11
Compression:
Stored size: 357 Bytes
Contents
# frozen_string_literal: true require_relative './support/monthly_unit' module TimeBoss class Calendar class Year < Support::MonthlyUnit NUM_MONTHS = 12 # Get a simple representation of this year. # @return [String] (e.g. "2020") def name year_index.to_s end alias_method :title, :name end end end
Version data entries
11 entries across 11 versions & 1 rubygems