{"id":22153144,"url":"https://github.com/erniebrodeur/pushover","last_synced_at":"2025-04-10T02:21:56.607Z","repository":{"id":4411492,"uuid":"5549037","full_name":"erniebrodeur/pushover","owner":"erniebrodeur","description":"A gem to interface with pushover.net","archived":false,"fork":false,"pushed_at":"2020-08-28T14:19:26.000Z","size":334,"stargazers_count":64,"open_issues_count":1,"forks_count":24,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-09-23T12:38:41.108Z","etag":null,"topics":["api","cli","pushover","pushover-api","ruby","saas"],"latest_commit_sha":null,"homepage":"http://erniebrodeur.github.io/pushover/","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/erniebrodeur.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}},"created_at":"2012-08-25T06:01:56.000Z","updated_at":"2024-07-20T11:58:25.000Z","dependencies_parsed_at":"2022-09-13T17:51:54.366Z","dependency_job_id":null,"html_url":"https://github.com/erniebrodeur/pushover","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erniebrodeur%2Fpushover","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erniebrodeur%2Fpushover/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erniebrodeur%2Fpushover/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erniebrodeur%2Fpushover/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/erniebrodeur","download_url":"https://codeload.github.com/erniebrodeur/pushover/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248143155,"owners_count":21054718,"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":["api","cli","pushover","pushover-api","ruby","saas"],"created_at":"2024-12-02T01:16:59.590Z","updated_at":"2025-04-10T02:21:56.579Z","avatar_url":"https://github.com/erniebrodeur.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pushover\n[![Build Status](https://travis-ci.org/erniebrodeur/pushover.svg?branch=master)](https://travis-ci.org/erniebrodeur/pushover) [![codecov](https://codecov.io/gh/erniebrodeur/pushover/branch/master/graph/badge.svg)](https://codecov.io/gh/erniebrodeur/pushover)\n\nThis gem provides a CLI and an API interface to https://pushover.net.\n\n## Installation\n\nTo install:\n\n    gem install pushover\n\nTo use inside of an application, add this to the your gemfile:\n\n    gem 'pushover'\n\nand run bundle to make it available:\n\n    bundle\n\n\n## Usage\n\nFor now, not much is supported on the CLI.\n\nSending a message:\n\n    pushover --token=your_app_token --user=user_key message here we go again, on my own.\n    pushover -tyour_app_token -uuser_key message here we go again, on my own.\n\nGetting receipt details:\n\n\n    pushover -tyour_app_token receipt receipt-hash\n\nCurrently unsupported message features:\n - attachments\n - callbacks\n - setting timestamp\n\n\n### Api\n\n``` ruby\n  require 'pushover'\n\n  ### message\n  message = Pushover::Message.new(token: 'token', user: 'user_key', message: '...')\n  message.push\n\n\n  ### Receipt\n  Pushover::Message.new(token: 'token', user: 'user_key', message: '...', 'priority': 2, expire: 1, retry: 60).push\n\n  receipt = Pushover::Receipt.new(receipt: \"receipt\", token: 'token')\n  receipt.get\n\n  ### Responses\n  response = Pushover::Message.new(token: 'token', user: 'user_key', message: '...').push\n\n  # the below data is populated from the response\n  puts response.status     # return the status of the request, 0 or 1\n  puts response.request    # uuid of the request\n  puts response.errors     # array of errors (if any)\n  puts response.receipt    # receipt (if requested)\n  puts response.headers    # response headers (includes limits)\n  puts response.attributes # any other k/v pair returned from pushover\n```\n\n## Contributing\n\n1. Fork it\n2. Switch to development (`git checkout development`)\n3. Create your feature branch (`git checkout -b my-new-feature`)\n4. Commit your changes (`git commit -am 'Added some feature'`)\n5. Push to the branch (`git push origin my-new-feature`)\n6. Create new Pull Request against `development`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferniebrodeur%2Fpushover","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ferniebrodeur%2Fpushover","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferniebrodeur%2Fpushover/lists"}