Class: ActiveMerchant::Billing::CreditCard::ExpiryDate
- Inherits:
-
Object
- Object
- ActiveMerchant::Billing::CreditCard::ExpiryDate
- Defined in:
- lib/active_merchant/billing/credit_card.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#month ⇒ Object
readonly
Returns the value of attribute month.
-
#year ⇒ Object
readonly
Returns the value of attribute year.
Instance Method Summary collapse
-
#expiration ⇒ Object
:nodoc:.
-
#expired? ⇒ Boolean
:nodoc:.
-
#initialize(month, year) ⇒ ExpiryDate
constructor
A new instance of ExpiryDate.
Constructor Details
#initialize(month, year) ⇒ ExpiryDate
Returns a new instance of ExpiryDate.
389 390 391 392 |
# File 'lib/active_merchant/billing/credit_card.rb', line 389 def initialize(month, year) @month = month.to_i @year = year.to_i end |
Instance Attribute Details
#month ⇒ Object (readonly)
Returns the value of attribute month.
388 389 390 |
# File 'lib/active_merchant/billing/credit_card.rb', line 388 def month @month end |
#year ⇒ Object (readonly)
Returns the value of attribute year.
388 389 390 |
# File 'lib/active_merchant/billing/credit_card.rb', line 388 def year @year end |
Instance Method Details
#expiration ⇒ Object
:nodoc:
398 399 400 401 402 |
# File 'lib/active_merchant/billing/credit_card.rb', line 398 def expiration #:nodoc: Time.utc(year, month, month_days, 23, 59, 59) rescue ArgumentError Time.at(0).utc end |
#expired? ⇒ Boolean
:nodoc:
394 395 396 |
# File 'lib/active_merchant/billing/credit_card.rb', line 394 def expired? #:nodoc: Time.now.utc > expiration end |