pda / am_credit_card

ActiveMerchant::Billing::CreditCard, without ActiveMerchant.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

am_credit_card

ActiveMerchant::Billing::CreditCard, without ActiveMerchant.

https://secure.travis-ci.org/pda/am_credit_card.png

Why?

ActiveMerchant has nice credit card validations, but also lots of dependencies and other code. That's fine for those using the rest of ActiveMerchant, but if you're just after its credit card model/validations, this is for you.

Usage

# Gemfile
gem "am_credit_card"
# Instantiation
card = ActiveMerchant::Billing::CreditCard.new(
  :first_name         => "Bob",
  :last_name          => "Bobsen",
  :number             => "4242424242424242",
  :month              => "8",
  :year               => "2012",
  :verification_value => "123"
)

# Validation
card.valid?
card.errors

License

ActiveMerchant is Copyright © 2005-2010 Tobias Luetke. He has released it open-source under the MIT license

About

ActiveMerchant::Billing::CreditCard, without ActiveMerchant.


Languages

Language:Ruby 100.0%