Class: Date

Inherits:
Object show all
Defined in:
lib/commercebank/monkey.rb

Instance Method Summary collapse

Instance Method Details

#days_in_monthObject



40
41
42
# File 'lib/commercebank/monkey.rb', line 40

def days_in_month
  (Date.parse("12/31/#{strftime("%Y")}") << (12 - month)).day
end

#last_sundayObject



44
45
46
47
48
# File 'lib/commercebank/monkey.rb', line 44

def last_sunday
  d = self
  d -= 1 until d.wday == 0
  d
end