Skip to content

up_the_irons/credit_card_tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Credit Card Tools
=================

These are a set of ruby scripts for processing credit cards on the command
line.

Supported processors:

  * PayPal (Business or Premier account required)

Requirements
------------

  * RubyGems
  * ActiveMerchant

Setup
-----

Copy gateway.yml.example to gateway.yml and fill in the fields in that file.

There is one block for the "live" environment, where real credit cards are
charged, and one block for the "test" environment, which mocks everything
through PayPal's Sandbox and no real money is exchanged.

Install ActiveMerchant::

  gem install activemerchant

If the following files are not set executable, you should do::

  chmod 755 charge.rb refund.rb

Usage
-----

Commands:

  * charge.rb
  * refund.rb

Run the commands without arguments to see the options.

Example $1.00 charge::

  ./charge.rb 1.00 4111111111111111 02/2012

Example $1.00 refund::

  ./refund.rb 1.00 2TL24258DY409104G

The second argument in the above example is the Auth ID of the original 
transaction.

The output will be a nicely formatted response from PayPal.  The response is
in YAML format, so you could do further processing with your own scripts 
relatively easily.

Other Processors
----------------

ActiveMerchant supports a large list of credit card processors / gateways.
To use these tools with a gateway besides PayPal, modify gateway.rb to suit
your needs.  It should be relatively straight forward.

See: http://www.activemerchant.org

Author
------

Garry C. Dolley

gdolley [at] NOSPAM- ucla.edu

AIM: garry97531

IRC: I am up_the_irons in #ram, #git and #caboose on Freenode.

Copyright
---------

Copyright (c) 2008 Garry C. Dolley

This is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later 
version.

This is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
details.

You should have received a copy of the GNU General Public License along with
this software; if not, write to the Free Software Foundation, Inc., 51 Franklin
Street, Fifth Floor, Boston, MA  02110-1301, USA

About

Tools for processing credit cards on the command line

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages