Sha256: d3969287d691187afe9b8cde16559d28338f5cf9827a725867e465283f483869
Contents?: true
Size: 316 Bytes
Versions: 6
Compression:
Stored size: 316 Bytes
Contents
module TimeBoss class Calendar module Support class MonthBasis attr_reader :year, :month def initialize(year, month) @year = year @month = month end def to_range @_to_range ||= start_date .. end_date end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems