Class: ActiveMerchant::Billing::CreditCard::ExpiryDate

Inherits:
Object
  • Object
show all
Defined in:
lib/active_merchant/billing/expiry_date.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(month, year) ⇒ ExpiryDate

Returns a new instance of ExpiryDate.



8
9
10
11
# File 'lib/active_merchant/billing/expiry_date.rb', line 8

def initialize(month, year)
  @month = month.to_i
  @year = year.to_i
end

Instance Attribute Details

#monthObject (readonly)

Returns the value of attribute month.



7
8
9
# File 'lib/active_merchant/billing/expiry_date.rb', line 7

def month
  @month
end

#yearObject (readonly)

Returns the value of attribute year.



7
8
9
# File 'lib/active_merchant/billing/expiry_date.rb', line 7

def year
  @year
end

Instance Method Details

#expirationObject

:nodoc:



17
18
19
20
21
22
23
# File 'lib/active_merchant/billing/expiry_date.rb', line 17

def expiration #:nodoc:
  begin
    Time.utc(year, month, month_days, 23, 59, 59)
  rescue ArgumentError
    Time.at(0).utc
  end
end

#expired?Boolean

:nodoc:

Returns:

  • (Boolean)


13
14
15
# File 'lib/active_merchant/billing/expiry_date.rb', line 13

def expired? #:nodoc:
  Time.now.utc > expiration
end