{"id":13830742,"url":"https://github.com/zeromq/rbzmq","last_synced_at":"2025-04-04T19:12:29.576Z","repository":{"id":824187,"uuid":"538570","full_name":"zeromq/rbzmq","owner":"zeromq","description":"Ruby binding for 0MQ","archived":false,"fork":false,"pushed_at":"2013-02-20T17:18:52.000Z","size":280,"stargazers_count":247,"open_issues_count":12,"forks_count":43,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-03-28T18:15:14.151Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.zeromq.org/bindings:ruby","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zeromq.png","metadata":{"files":{"readme":"README.rdoc","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2010-02-27T11:42:16.000Z","updated_at":"2025-01-06T01:56:16.000Z","dependencies_parsed_at":"2022-08-16T11:00:52.218Z","dependency_job_id":null,"html_url":"https://github.com/zeromq/rbzmq","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeromq%2Frbzmq","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeromq%2Frbzmq/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeromq%2Frbzmq/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeromq%2Frbzmq/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zeromq","download_url":"https://codeload.github.com/zeromq/rbzmq/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247234923,"owners_count":20905854,"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-08-04T10:01:07.220Z","updated_at":"2025-04-04T19:12:29.560Z","avatar_url":"https://github.com/zeromq.png","language":"C","funding_links":[],"categories":["C","Gems"],"sub_categories":["Message Queuing"],"readme":"= ZeroMQ Ruby Bindings\n\nZeroMQ http://www.zeromq.org/\n\nØMQ looks like an embeddable networking library but acts like a concurrency framework. It gives you sockets that\ncarry whole messages across various transports like inproc, IPC, TCP, and multicast. You can connect sockets N-to-N\nwith patterns like fanout, pubsub, task distribution, and request-reply.\n\n== Example\n\n  require \"zmq\"\n\n  context = ZMQ::Context.new(1)\n\n  puts \"Opening connection for READ\"\n  inbound = context.socket(ZMQ::UPSTREAM)\n  inbound.bind(\"tcp://127.0.0.1:9000\")\n\n  outbound = context.socket(ZMQ::DOWNSTREAM)\n  outbound.connect(\"tcp://127.0.0.1:9000\")\n  p outbound.send(\"Hello World!\")\n  p outbound.send(\"QUIT\")\n\n  loop do\n    data = inbound.recv\n    p data\n    break if data == \"QUIT\"\n  end\n\n== License\n\nCopyright (c) 2007-2010 iMatix Corporation\n\nThis file is part of 0MQ.\n\n0MQ is free software; you can redistribute it and/or modify it under\nthe terms of the Lesser GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\n0MQ is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nLesser GNU General Public License for more details.\n\nYou should have received a copy of the Lesser GNU General Public License\nalong with this program.  If not, see \u003chttp://www.gnu.org/licenses/\u003e.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeromq%2Frbzmq","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzeromq%2Frbzmq","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeromq%2Frbzmq/lists"}