Class: Date
- Inherits:
-
Object
- Object
- Date
- Defined in:
- lib/always_be_contributing/core_ext/date/month_calculator.rb
Instance Method Summary collapse
Instance Method Details
#beginning_of_month ⇒ Object
2 3 4 |
# File 'lib/always_be_contributing/core_ext/date/month_calculator.rb', line 2 def beginning_of_month change(day: 1) end |
#change(options) ⇒ Object
5 6 7 8 9 10 11 |
# File 'lib/always_be_contributing/core_ext/date/month_calculator.rb', line 5 def change() ::Date.new( .fetch(:year, year), .fetch(:month, month), .fetch(:day, day) ) end |