Skip to content

Ruby wrapper for the Bitpagos payment processing API

License

Notifications You must be signed in to change notification settings

fastruby/bitpagos

Repository files navigation

Bitpagos API

Ruby wrapper for the Bitpagos Payments API

Gem Version Build Status Code Climate

Getting Started

For command line usage:

$ gem install bitpagos

If you intend to use it within an application, add gem "bitpagos" to your Gemfile.

Usage

After installing the gem, you need to obtain your Bitpagos API key from their website, in your control panel, here.

Initialize a Bitpagos client by running:

your_api_key = "ABCDEFG123456789"
client = Bitpagos::Client.new(your_api_key)

To get a transaction by its id:

client.get_transaction("12345")

To get only the completed or waiting transactions:

result = client.completed_transactions

result = client.waiting_transactions

You can also use the #transactions method like this:

result = client.transactions(status: :completed)

result = client.transactions(status: :waiting)

Pagination is available by providing limit and offset:

result = client.transactions(status: :completed, limit: 20, offset: 60)

Contributing & Development

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Write your feature (and tests)
  4. Run tests (bundle exec rake)
  5. Commit your changes (git commit -am 'Added some feature')
  6. Push to the branch (git push origin my-new-feature)
  7. Create new Pull Request

Release the Gem

$ bundle exec rake release

About

Ruby wrapper for the Bitpagos payment processing API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages