Skip to content

This is a JSON-RPC 2.0 client implementation with some specific additions (custom auth schemes, etc)

License

Notifications You must be signed in to change notification settings

klaustopher/ripcord

Repository files navigation

RiPCord Ruby Gem Version Coverage Status

This is a JSON-RPC 2.0 implementation. It is heavily based on JSONRPC::Client but has a lot of changes from the initial implementation that are sort of specific to our use case. But it might work for you as well.

The name RiPCord originates from me searching for a word that contained RPC :)

Installation

Add this line to your application's Gemfile:

gem 'ripcord'

And then execute:

$ bundle

Usage

Basic Usage

client = Ripcord::Client.new('http://www.some-server.com/rpc-endpoint')

client.call('add', [1, 2])

... with Authentication

client.authentication =
    Ripcord::Authentication::HTTPBasicAuth.new('user', 'password')
client.authentication = Ripcord::Authentication::HTTPTokenAuth.new('some-token')
client.authentication = Ripcord::Authentication::InlineToken.new('some-token')

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/klaustopher/ripcord.

Special thanks

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Ripcord project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

About

This is a JSON-RPC 2.0 client implementation with some specific additions (custom auth schemes, etc)

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published