This gem will allow developers to interact with 3Scale's APIs.
Add this line to your application's Gemfile:
gem '3scale_api'
And then execute:
$ bundle
Or install it yourself as:
$ gem install 3scale_api
Initialize the settings as follows:
require "3scale_api"
Threescale.configure do |config|
config.provider_key = ENV["THREESCALE_PROVIDER_KEY"]
config.base_url = ENV["THREESCALE_URL"]
end
- Fork it ( https://github.com/[my-github-username]/threescale_api/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request