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 :)
Add this line to your application's Gemfile:
gem 'ripcord'And then execute:
$ bundle
client = Ripcord::Client.new('http://www.some-server.com/rpc-endpoint')
client.call('add', [1,2])# HTTP Basic Auth (https://tools.ietf.org/html/rfc2617)
client.authentication = Ripcord::Authentication::HTTPBasicAuth.new('user', 'password')# HTTP Token Auth (https://tools.ietf.org/html/draft-hammer-http-token-auth-01)
client.authentication = Ripcord::Authentication::HTTPBasicAuth.new('some-token')# Inline Token
# This adds a token item to the root of the JSON request.
client.authentication = Ripcord::Authentication::InlineToken.new('some-token')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.
Bug reports and pull requests are welcome on GitHub at https://github.com/klaustopher/ripcord.
- Pavel Forkert for the initial implementation of
JSONRPC::Client - Clark Germany for paying me to work on this ;)
The gem is available as open source under the terms of the MIT License.