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])
client.authentication =
Ripcord::Authentication::HTTPBasicAuth.new('user', 'password')
client.authentication = Ripcord::Authentication::HTTPTokenAuth.new('some-token')
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.
Everyone interacting in the Ripcord project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.