{"id":20010425,"url":"https://github.com/magynhard/wc3_protocol","last_synced_at":"2026-01-25T00:30:52.325Z","repository":{"id":202799343,"uuid":"708167906","full_name":"magynhard/wc3_protocol","owner":"magynhard","description":"Warcraft III protocol implementation in Ruby","archived":false,"fork":false,"pushed_at":"2024-08-05T14:38:36.000Z","size":76,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-06T11:25:24.773Z","etag":null,"topics":["lan","network","protocol","warcraft","warcraft3"],"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/magynhard.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null},"funding":{"github":["magynhard"]}},"created_at":"2023-10-21T18:15:25.000Z","updated_at":"2024-08-05T14:38:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"41d465f2-9e88-4b63-b94b-57ba38be9f8f","html_url":"https://github.com/magynhard/wc3_protocol","commit_stats":null,"previous_names":["magynhard/wc3_protocol"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/magynhard/wc3_protocol","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magynhard%2Fwc3_protocol","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magynhard%2Fwc3_protocol/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magynhard%2Fwc3_protocol/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magynhard%2Fwc3_protocol/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/magynhard","download_url":"https://codeload.github.com/magynhard/wc3_protocol/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magynhard%2Fwc3_protocol/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28739834,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T22:12:27.248Z","status":"ssl_error","status_checked_at":"2026-01-24T22:12:10.529Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["lan","network","protocol","warcraft","warcraft3"],"created_at":"2024-11-13T07:19:44.839Z","updated_at":"2026-01-25T00:30:52.295Z","avatar_url":"https://github.com/magynhard.png","language":"Ruby","funding_links":["https://github.com/sponsors/magynhard"],"categories":[],"sub_categories":[],"readme":"# wc3_protocol\n[![Gem](https://img.shields.io/gem/v/wc3_protocol?color=default\u0026style=plastic\u0026logo=ruby\u0026logoColor=red)](https://rubygems.org/gems/wc3_protocol)\n![downloads](https://img.shields.io/gem/dt/wc3_protocol?color=blue\u0026style=plastic)\n[![License: MIT](https://img.shields.io/badge/License-MIT-gold.svg?style=plastic\u0026logo=mit)](LICENSE)\n\n\u003e The ruby gem to find and retrieve information of Warcraft3 games on LAN\n\n# Contents\n\n* [Usage](#usage)\n* [Installation](#installation)\n* [Documentation](#documentation)\n* [Contributing](#contributing)\n\n\n\n\n\u003ca name=\"usage\"\u003e\u003c/a\u003e\n## Usage\n\n### Find games in LAN\n```ruby\nrequire 'wc3_protocol'\n\n# examples with explicit default parameters\ngames = Wc3Protocol::Broadcast.find_games port: 6112, version: '1.27', game_type: 'TFT'\n# =\u003e [Wc3Protocol::ServerInfo, Wc3Protocol::ServerInfo, ...]\n\ngames.each do |g|\n  puts \"==================================================\"\n  puts \"Found game on #{g.remote_address}:#{g.remote_port}\"\n  puts\n  puts \"Type: #{g.game_type}\"\n  puts \"Version: #{g.game_version}\"\n  puts \"Name: #{g.name}\"\n  puts \"Map: #{g.map_name}\"\n  puts \"Players: #{g.taken_slots}/#{g.max_slots}\"\n  puts\n  # ==================================================\"\n  # Found game on 192.168.178.20:6112\"\n  # \n  # Type: The Frozen Throne\n  # Version: 1.27\n  # Name: Local game (SuperPlayer)\n  # Map: (4)Tanaris.w3x\n  # Players: 3/4\"\n  # \nend\n\n```\n\n\n\u003ca name=\"installation\"\u003e\u003c/a\u003e\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'wc3_protocol'\n```\n\nAnd then execute:\n\n    $ bundle install\n\nOr install it yourself by:\n\n    $ gem install wc3_protocol\n\n\n\n\n  \n\u003ca name=\"documentation\"\u003e\u003c/a\u003e    \n## Documentation\nCheck out the doc at RubyDoc\n\u003ca href=\"https://www.rubydoc.info/gems/wc3_protocol\"\u003ehttps://www.rubydoc.info/gems/wc3_protocol\u003c/a\u003e\n\n\n\n\n\n\u003ca name=\"contributing\"\u003e\u003c/a\u003e    \n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/magynhard/wc3_protocol. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmagynhard%2Fwc3_protocol","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmagynhard%2Fwc3_protocol","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmagynhard%2Fwc3_protocol/lists"}