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