Module: Periods::Modules::WeeklyPeriod::InstanceMethods
- Defined in:
- lib/periods/modules/weekly_period.rb
Instance Method Summary collapse
- #days ⇒ Object
-
#next ⇒ Object
25.06.2015 => 02.07.2015.
-
#previous ⇒ Object
02.07.2015 => 25.06.2015.
Instance Method Details
#days ⇒ Object
32 33 34 |
# File 'lib/periods/modules/weekly_period.rb', line 32 def days 7 end |
#next ⇒ Object
25.06.2015 => 02.07.2015
21 22 23 |
# File 'lib/periods/modules/weekly_period.rb', line 21 def next self.class.for(start_date + 7) end |
#previous ⇒ Object
02.07.2015 => 25.06.2015
28 29 30 |
# File 'lib/periods/modules/weekly_period.rb', line 28 def previous self.class.for(start_date - 7) end |