Class: Daru::Offsets::YearBegin

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

Overview

Create a year begin offset

Examples:

Create a YearBegin offset

offset = Daru::Offsets::YearBegin.new(3)
offset + DateTime.new(2012,5,5)
#=> #<DateTime: 2015-01-01T00:00:00+00:00 ((2457024j,0s,0n),+0s,2299161j)>

Constant Summary collapse

FREQ =
'YB'.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



342
343
344
345
# File 'lib/daru/date_time/offsets.rb', line 342

def + date_time
  DateTime.new(date_time.year + @n, 1, 1,
    date_time.hour,date_time.min, date_time.sec)
end

#-(date_time) ⇒ Object



347
348
349
350
351
352
353
354
# File 'lib/daru/date_time/offsets.rb', line 347

def - date_time
  if on_offset?(date_time)
    DateTime.new(date_time.year - @n, 1, 1,
      date_time.hour,date_time.min, date_time.sec)
  else
    DateTime.new(date_time.year - (@n-1), 1, 1)
  end
end

#on_offset?(date_time) ⇒ Boolean

Returns:

  • (Boolean)


356
357
358
# File 'lib/daru/date_time/offsets.rb', line 356

def on_offset? date_time
  date_time.month == 1 && date_time.day == 1
end