Sha256: 77e0f4cce5f71395aed3c911e52f2bc79e095d9d4f1457baa20dfb338117f6b4

Contents?: true

Size: 1.93 KB

Versions: 1

Compression:

Stored size: 1.93 KB

Contents

# Spree Gateway

[![Build Status](https://secure.travis-ci.org/spree/spree_gateway.png?branch=master)](http://travis-ci.org/spree/spree_gateway)

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**

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

**Spree 1.3**

```ruby
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][1], **everyone** is encouraged to help improve this project.

Here are some ways *you* can contribute:

* by using prerelease versions
* by reporting [bugs][2]
* 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][2]
* 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][3]

[1]: http://www.fsf.org/licensing/essays/free-sw.html
[2]: https://github.com/futhr/spree-dibs/issues
[3]: https://github.com/spree/spree_gateway/tree/master/LICENSE

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree_gateway-2.0.1 README.md