Skip to content
/ pisoni Public

Client for the Apisonator internal API to push model data

License

Notifications You must be signed in to change notification settings

3scale/pisoni

Repository files navigation

CircleCI Maintainability Gem Version

Pisoni

Pisoni is a Ruby client for the internal API of the Apisonator component of the 3scale API Management software. This API allows third parties to push model data to the Apisonator data store.

License

This Ruby gem is licensed under the Apache 2.0 license.

Install

You can add this gem to your Gemfile, or install it in your system with:

$ gem install pisoni -v '= x.y.z'

where x.y.z is the version you aim for.

Development

Running tests with make and podman-compose

We are using podman-compose to run the dependencies (redis and apisonator) for the tests. You need to have it installed locally.

You can run the test suite (with the required dependencies) by executing make test.

For cleaning up the dependencies containers, you can run make deps_down.

Running tests locally

You can run both tests & specs with:

$ bundle exec rake

You can also test against a different Apisonator instance. Use the environment variable THREESCALE_CORE_INTERNAL_API to point the tests to your running backend instance:

$ THREESCALE_CORE_INTERNAL_API=http://user:[email protected]:8081/internal bundle exec rake