class CalendariumRomanum::Util::Month

Enumerates days of a month

Public Class Methods

new(year, month) click to toggle source
# File lib/calendarium-romanum/util.rb, line 53
def initialize(year, month)
  @start = Date.new year, month, 1
  @prop = :month
end