Class: Fixnum

Inherits:
Object
  • Object
show all
Includes:
BusinessTime
Defined in:
lib/extensions/fixnum.rb

Overview

hook into fixnum so we can say things like:

5.business_hours.from_now
7.business_days.ago
3.business_days.after(some_date)
4.business_hours.before(some_date_time)

Instance Method Summary collapse

Instance Method Details

#business_daysObject Also known as: business_day



14
15
16
# File 'lib/extensions/fixnum.rb', line 14

def business_days
  BusinessDays.new(self)
end

#business_hoursObject Also known as: business_hour



9
10
11
# File 'lib/extensions/fixnum.rb', line 9

def business_hours
  BusinessHours.new(self)
end