Module: Monthstamp

Included in:
Month
Defined in:
lib/monthstamp.rb,
lib/monthstamp/version.rb

Constant Summary collapse

VERSION =
"0.1.0"

Instance Method Summary collapse

Instance Method Details

#monthstampObject Also known as: month_id



5
6
7
# File 'lib/monthstamp.rb', line 5

def monthstamp
 (self.year - 1970) * 12 + self.month - 1
end

#to_monthObject



10
11
12
# File 'lib/monthstamp.rb', line 10

def to_month
  Month.at(monthstamp)
end