Sha256: abb12f343f5ebb186b51f96a0c054c8b85e1cde00638b31d88f6a187240e7ce6

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 KB

Contents

# Paid Ruby bindings ![Travis CI Status](https://travis-ci.org/paidapi/paid-ruby.svg?branch=master) [![Code Climate](https://codeclimate.com/github/paidapi/paid-ruby/badges/gpa.svg)](https://codeclimate.com/github/paidapi/paid-ruby)


## Installation

You don't need this source code unless you want to modify the gem. If
you just want to use the Paid Ruby bindings, you should run:

```bash
gem install paid
```

If you want to build the gem from source:

```bash
gem build paid.gemspec
```


## Requirements

* Ruby 2.0 or above.

Ruby 1.8.6 may work if you load ActiveSupport. 1.8.7 may work if you add this to your Gemfile:

```ruby
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('1.9.2')
  gem 'rest-client', '~> 1.6.8'
end
```

1.9.2 should work without any changes, but we don't currently test against it or any versions before 1.9.3.

* rest-client, json


## Bundler

If you are installing via bundler, you should be sure to use the https
rubygems source in your Gemfile, as any gems fetched over http could potentially be compromised.

```ruby
source 'https://rubygems.org'

gem 'rails'
gem 'paid'
```


## Development

Test cases can be run with: `bundle exec rake test`


## Test Rake Task

To hit the API with some test calls run:

```bash
bundle exec rake test_api["sk_test_api_key"]
```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
paid-1.2.1 README.md