class Calrom::Day

Public Class Methods

new(date) click to toggle source
Calls superclass method
# File lib/calrom/date_range.rb, line 92
def initialize(date)
  super date, date
end

Public Instance Methods

each_month() { |self| ... } click to toggle source
# File lib/calrom/date_range.rb, line 100
def each_month
  yield self
end
to_s() click to toggle source
# File lib/calrom/date_range.rb, line 96
def to_s
  first.to_s
end