{"id":21991916,"url":"https://github.com/elct9620/iv-plurk","last_synced_at":"2026-05-02T15:42:37.023Z","repository":{"id":56878249,"uuid":"173602658","full_name":"elct9620/iv-plurk","owner":"elct9620","description":"The Plurk API client","archived":false,"fork":false,"pushed_at":"2019-03-05T01:42:36.000Z","size":27,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-13T18:27:31.366Z","etag":null,"topics":["api","gem","plurk","ruby"],"latest_commit_sha":null,"homepage":"","language":"Ruby","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/elct9620.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-03-03T16:52:31.000Z","updated_at":"2019-03-05T01:42:38.000Z","dependencies_parsed_at":"2022-08-20T10:40:37.165Z","dependency_job_id":null,"html_url":"https://github.com/elct9620/iv-plurk","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/elct9620/iv-plurk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elct9620%2Fiv-plurk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elct9620%2Fiv-plurk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elct9620%2Fiv-plurk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elct9620%2Fiv-plurk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elct9620","download_url":"https://codeload.github.com/elct9620/iv-plurk/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elct9620%2Fiv-plurk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32540120,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T12:25:33.646Z","status":"ssl_error","status_checked_at":"2026-05-02T12:24:51.733Z","response_time":132,"last_error":"SSL_read: 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":["api","gem","plurk","ruby"],"created_at":"2024-11-29T20:12:10.176Z","updated_at":"2026-05-02T15:42:37.006Z","avatar_url":"https://github.com/elct9620.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IV-Plurk\n\nThis is API Client for [Plurk](https://plurk.com).\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'iv-plurk'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install iv-plurk\n\n## Usage\n\nBy the default this gem will load credential from environment variables.\n\n* PLURK_CONSUMER_KEY\n* PLURK_CONSUMER_SECRET\n* PLURK_OAUTH_TOKEN\n* PLURK_OAUTH_SECRET\n\n\nTo convert your Plurk realtime timeline into webhook, you can use the command line to execute it.\n\n```bash\niv-plurk -w WEBHOOK_URL\n```\n\nIf you want to switch credential you can use `#use` method\n\n```ruby\ncred = IV::Plurk::Credential.new(\n  consumer_key: 'XXX',\n  consumer_secret: 'XXX',\n  oauth_token: 'XXX',\n  oauth_secret: 'XXX'\n)\n\nIV::Plurk.use(cred) do\n  channel = IV::Plurk::Realtime.channel\n  puts \"The Comet Server is #{channel.server}\"\nend\n```\n\n### Realtime API\n\nGet the realtime server\n\n```ruby\nIV::Plurk::Realtime.new(cred).channel\n```\n\n## Docker\n\nThis gem didn't design for on daemon, but you can use the docker with `restart always` option.\n\n```bash\n# Get the latest docker image\ndocker pull elct9620/iv-plurk\n\n# Run it as daemon\ndocker run -d --restart=always -e PLURK_CONSUMER_KEY=XXX -e PLURK_CONSUMER_SECRET=XXX -e PLURK_OAUTH_SECRET=XXX -e PLURK_OAUTH_TOKEN=XXX elct9620/iv-plurk -w WEBHOOK_URL\n```\n\n## Development\n\nAfter 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.\n\nTo 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](https://rubygems.org).\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/elct9620/iv-plurk. 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## Code of Conduct\n\nEveryone interacting in the Iv::Plurk project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/elct9620/iv-plurk/blob/master/CODE_OF_CONDUCT.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felct9620%2Fiv-plurk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felct9620%2Fiv-plurk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felct9620%2Fiv-plurk/lists"}