jdghatnatti / spree_gateway

Community maintained collection of gateways for use in Spree

Home Page:http://spreecommerce.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Spree Gateway

Build Status

Community supported Spree Payment Method Gateways.

These can be used with Spree >= 1.0.x (but see note below for necessary changes)

http://guides.spreecommerce.com/developer/payments.html

Installation

In your Gemfile:

Spree edge

gem 'spree'
gem 'spree_gateway', github: 'spree/spree_gateway'

Spree 1.3

gem 'spree', '~> 1.3'
gem 'spree_gateway', github: 'spree/spree_gateway', branch: '1-3-stable'

Note: Please consult the Versionfile at the root of the repository to determine which branch to use.

Then run from the command line:

$ bundle install
$ rails g spree_gateway:install

Finally, make sure to restart your app. Navigate to Configuration > Payment Methods > New Payment Method in the admin panel and you should see that a bunch of additional gateways have been added to the list.

Contributing

In the spirit of free software, everyone is encouraged to help improve this project.

Here are some ways you can contribute:

  • by using prerelease versions
  • by reporting bugs
  • by suggesting new features
  • by writing or editing documentation
  • by writing specifications
  • by writing code (no patch is too small: fix typos, add comments, clean up inconsistent whitespace)
  • by refactoring code
  • by resolving issues
  • by reviewing patches

Starting point:

  • Fork the repo
  • Clone your repo
  • Run bundle
  • Run bundle exec rake test_app to create the test application in spec/test_app
  • Make your changes
  • Ensure specs pass by running bundle exec rspec spec
  • Submit your pull request

Copyright (c) 2013 Spree Commerce, released under the New BSD License

About

Community maintained collection of gateways for use in Spree

http://spreecommerce.com

License:BSD 3-Clause "New" or "Revised" License