Module: Periods::Modules::MonthlyPeriod::ClassMethods
- Defined in:
- lib/periods/modules/monthly_period.rb
Instance Method Summary collapse
-
#for(date) ⇒ Object
‘25.06.2015’ => 25.06.2015 - ‘24.07.2015’.
Instance Method Details
#for(date) ⇒ Object
‘25.06.2015’ => 25.06.2015 - ‘24.07.2015’
19 20 21 22 |
# File 'lib/periods/modules/monthly_period.rb', line 19 def for(date) date = Date.parse(date.to_s) new(date, date.next_month.prev_day) end |