{"id":17832010,"url":"https://github.com/bitboxer/jimson","last_synced_at":"2025-05-15T11:00:17.572Z","repository":{"id":39648154,"uuid":"2044520","full_name":"bitboxer/jimson","owner":"bitboxer","description":"JSON-RPC 2.0 client and server for Ruby","archived":false,"fork":false,"pushed_at":"2025-05-09T22:08:32.000Z","size":157,"stargazers_count":140,"open_issues_count":3,"forks_count":62,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-05-13T14:11:59.078Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bitboxer.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2011-07-13T22:04:16.000Z","updated_at":"2025-05-09T22:08:30.000Z","dependencies_parsed_at":"2025-03-12T22:00:37.185Z","dependency_job_id":"d7d211ee-0b33-4481-bf8a-8e3b816f229e","html_url":"https://github.com/bitboxer/jimson","commit_stats":{"total_commits":130,"total_committers":10,"mean_commits":13.0,"dds":0.3076923076923077,"last_synced_commit":"e33891e6ac5db26a14c1cdcfe540632d2b362840"},"previous_names":["chriskite/jimson"],"tags_count":21,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitboxer%2Fjimson","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitboxer%2Fjimson/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitboxer%2Fjimson/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitboxer%2Fjimson/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bitboxer","download_url":"https://codeload.github.com/bitboxer/jimson/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253959030,"owners_count":21990622,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-27T19:49:20.737Z","updated_at":"2025-05-15T11:00:17.437Z","avatar_url":"https://github.com/bitboxer.png","language":"Ruby","readme":"# Jimson\n\n### [JSON-RPC 2.0](https://www.jsonrpc.org/specification) Client and Server for Ruby\n\n[![Build Status](https://github.com/chriskite/jimson/actions/workflows/ruby.yml/badge.svg?branch=main)](https://github.com/chriskite/jimson/actions/workflows/ruby.yml)\n\n## Client: Quick Start\n\n```ruby\nrequire 'jimson'\nclient = Jimson::Client.new(\"http://www.example.com:8999\") # the URL for the JSON-RPC 2.0 server to connect to\nresult = client.sum(1,2) # call the 'sum' method on the RPC server and save the result '3'\n```\n\n## Server: Quick Start\n\n```ruby\nrequire 'jimson'\n\nclass MyHandler\n  extend Jimson::Handler\n\n  def sum(a,b)\n    a + b\n  end\nend\n\nserver = Jimson::Server.new(MyHandler.new)\nserver.start # serve with webrick on http://0.0.0.0:8999/\n```\n\n## JSON Engine\n\nJimson uses [multi\\_json](https://github.com/intridea/multi_json), so you can load the JSON library of your choice in your application and Jimson will use it automatically.\n\nFor example, require the 'json' gem in your application:\n\n```ruby\nrequire 'json'\n```\n\n## Previous maintainer\n\nThis gem was maintained by [Chris Kite](https://github.com/chriskite/) till April 2021.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitboxer%2Fjimson","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbitboxer%2Fjimson","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitboxer%2Fjimson/lists"}