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
In your Gemfile:
Spree edge
gem 'spree'
gem 'spree_gateway', github: 'spree/spree_gateway', branch: 'master'
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.
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 inspec/test_app
- Make your changes
- Ensure specs pass by running
bundle exec rspec spec
- Submit your pull request
Copyright (c) 2014 Spree Commerce and other contributors, released under the New BSD License