Giter Club home page Giter Club logo

honest / active_merchant Goto Github PK

View Code? Open in Web Editor NEW

This project forked from activemerchant/active_merchant

1.0 85.0 0.0 11.04 MB

Active Merchant is a simple payment abstraction library used in and sponsored by Shopify. It is written by Tobias Luetke, Cody Fauser, and contributors. The aim of the project is to feel natural to Ruby users and to abstract as many parts as possible away from the user to offer a consistent interface across all supported gateways.

Home Page: http://activemerchant.org

License: MIT License

Ruby 100.00%

active_merchant's Introduction

Active Merchant

Active Merchant is an extraction from the e-commerce system Shopify. Shopify's requirements for a simple and unified API to access dozens of different payment gateways with very different internal APIs was the chief principle in designing the library.

Active Merchant has been in production use since June 2006 and is now used in most modern Ruby applications which deal with financial transactions.

It was developed for usage in Ruby on Rails web applications and integrates seamlessly as a plugin but it also works excellently as a stand alone library.

See {file:GettingStarted.md} if you want to learn more about using Active Merchant in your applications.

Installation

From Git

You can check out the latest source from git:

git clone git://github.com/Shopify/active_merchant.git

As a Rails plugin

ActiveMerchant includes an init.rb file. This means that Rails will automatically load ActiveMerchant on startup. Run the following command from the root directory of your Rails project to install ActiveMerchant as a Rails plugin:

script/plugin install git://github.com/Shopify/active_merchant.git

From RubyGems

Installation from RubyGems

gem install activemerchant

Alternatively, add the following to your Gemfile

gem 'activemerchant', :require => 'active_merchant'

Usage

This simple example demonstrates how a purchase can be made using a person's credit card details.

require 'rubygems'
require 'active_merchant'

# Use the TrustCommerce test servers
ActiveMerchant::Billing::Base.mode = :test

gateway = ActiveMerchant::Billing::TrustCommerceGateway.new(
            :login => 'TestMerchant',
            :password => 'password')

# ActiveMerchant accepts all amounts as Integer values in cents
amount = 1000  # $10.00

# The card verification value is also known as CVV2, CVC2, or CID 
credit_card = ActiveMerchant::Billing::CreditCard.new(
                :first_name         => 'Bob',
                :last_name          => 'Bobsen',
                :number             => '4242424242424242',
                :month              => '8',
                :year               => '2012',
                :verification_value => '123')

# Validating the card automatically detects the card type
if credit_card.valid?
  # Capture $10 from the credit card
  response = gateway.purchase(amount, credit_card)

  if response.success?
    puts "Successfully charged $#{sprintf("%.2f", amount / 100)} to the credit card #{credit_card.display_number}"
  else
    raise StandardError, response.message 
  end
end

For more in-depth documentation and tutorials, see {file:GettingStarted.md} and the API documentation.

Supported Direct Payment Gateways

The ActiveMerchant Wiki contains a table of features supported by each gateway.

Supported Offsite Payment Gateways

Contributing

The source code is hosted at GitHub, and can be fetched using:

git clone git://github.com/Shopify/active_merchant.git

Please see the ActiveMerchant Guide to Contributing for information on adding a new gateway to ActiveMerchant.

Build Status

active_merchant's People

Contributors

soleone avatar titanous avatar ntalbott avatar jduff avatar calvincorreli avatar dasch avatar iamjwc avatar wisq avatar jzw avatar jamesmacaulay avatar jstorimer avatar aizotovhonest avatar anderslemke avatar riscfuture avatar mwagg avatar duff avatar braintreeps avatar isaac avatar rmcafee avatar boucher avatar necrodome avatar ssoroka avatar mmangino avatar mrjaba avatar tobi avatar tekin avatar codemonkeysteve avatar nhemsley avatar moklett avatar gdb avatar

Watchers

Brian Smith avatar Casey Sackett avatar Eugene Brechko avatar Justin Ricaurte avatar Monica Wilkinson avatar Brett Ulrich avatar Ethan Jon avatar Paul Gustafson avatar  avatar Joel Jackson avatar  avatar  avatar Palina Latyshava avatar Yuan Yao avatar  avatar Clark Snowdall avatar Victor Garro avatar Gary Mu avatar JD Smith avatar Max Fedorov avatar Sangeeta  avatar James Cloos avatar paul brown avatar Rokas Venckus avatar Oleg P avatar scott hutchinson avatar Oleg Pylnev avatar Daryna Yakusha avatar Jean S Frederique avatar Mike "Woot" Maher  avatar  avatar Sohil Jain avatar  avatar tim peysar avatar  avatar Jonathon Ricaurte avatar  avatar Hilton Ma avatar Adam Greenberg avatar Justin "Stino" Malara avatar  avatar  avatar Ben Lewis avatar Thanh Lim avatar melissa avatar Michelle Yung avatar Mazal Asulin avatar Matt Farrokhzad avatar Colleen Powers avatar Jesse Monarrez avatar Rachel Rodriguez avatar Florentina Ilie avatar Jed Levin avatar Danny Chen avatar rui avatar  avatar  avatar Alireza Ghambari avatar Gonzago avatar  avatar Derek Smith avatar joanna canlas avatar Shruthi Vanga avatar Gideon Goei avatar Brian Onsen avatar Wei Xia avatar Aaron Botello avatar Jeff Neil avatar  avatar  avatar Arseny Izotov avatar Scott Chen avatar Camile Orillaneda avatar Lindsey Gothard  avatar cyogi avatar  avatar Fan-Wei Kung avatar  avatar  avatar  avatar Monica Wilkinson avatar  avatar Amber-Lee Madigan avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.