Class: Daru::Offsets::MonthEnd

Inherits:
DateOffsetType show all
Defined in:
lib/daru/date_time/offsets.rb

Overview

Create a month end offset

Examples:

Create a MonthEnd offset

offset = Daru::Offsets::MonthEnd.new
offset + DateTime.new(2012,5,5)
#=> #<DateTime: 2012-05-31T00:00:00+00:00 ((2456079j,0s,0n),+0s,2299161j)>

Constant Summary collapse

FREQ =
'ME'.freeze

Instance Method Summary collapse

Methods inherited from DateOffsetType

#freq_string, #initialize

Methods inherited from DateOffset

#-@, #initialize

Constructor Details

This class inherits a constructor from Daru::Offsets::DateOffsetType

Instance Method Details

#+(date_time) ⇒ Object



292
293
294
295
296
297
298
299
300
301
302
# File 'lib/daru/date_time/offsets.rb', line 292

def + date_time
  @n.times do
    date_time     = date_time >> 1 if on_offset?(date_time)
    days_in_month = Daru::MONTH_DAYS[date_time.month]
    days_in_month += 1 if date_time.leap? && date_time.month == 2

    date_time += (days_in_month - date_time.day)
  end

  date_time
end

#-(date_time) ⇒ Object



304
305
306
307
308
309
310
311
312
313
314
# File 'lib/daru/date_time/offsets.rb', line 304

def - date_time
  @n.times do
    date_time = date_time << 1
    days_in_month = Daru::MONTH_DAYS[date_time.month]
    days_in_month += 1 if date_time.leap? && date_time.month == 2

    date_time += (days_in_month - date_time.day)
  end

  date_time
end

#on_offset?(date_time) ⇒ Boolean

Returns:

  • (Boolean)


316
317
318
# File 'lib/daru/date_time/offsets.rb', line 316

def on_offset? date_time
  (date_time + 1).day == 1
end