Project

pisoni

0.0
Low commit activity in last 3 years
A long-lived project that still receives updates
Client for the Apisonator internal API for model data.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 13.1

Runtime

~> 2.0, <= 2.9
~> 2.7, >= 2.7.1
 Project Readme

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:passwd@172.17.42.1:8081/internal bundle exec rake