Skip to content

ActiveMerchant::Billing::CreditCard, without ActiveMerchant.

Notifications You must be signed in to change notification settings

pda/am_credit_card

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages