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.
383 384 385 386 |
# File 'lib/active_merchant/billing/credit_card.rb', line 383 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.
382 383 384 |
# File 'lib/active_merchant/billing/credit_card.rb', line 382 def month @month end |
#year ⇒ Object (readonly)
Returns the value of attribute year.
382 383 384 |
# File 'lib/active_merchant/billing/credit_card.rb', line 382 def year @year end |
Instance Method Details
#expiration ⇒ Object
:nodoc:
392 393 394 395 396 |
# File 'lib/active_merchant/billing/credit_card.rb', line 392 def expiration #:nodoc: Time.utc(year, month, month_days, 23, 59, 59) rescue ArgumentError Time.at(0).utc end |
#expired? ⇒ Boolean
:nodoc:
388 389 390 |
# File 'lib/active_merchant/billing/credit_card.rb', line 388 def expired? #:nodoc: Time.now.utc > expiration end |