{"id":20080612,"url":"https://github.com/iaguirre88/exception_notification_telegram","last_synced_at":"2025-08-11T05:11:46.027Z","repository":{"id":34649863,"uuid":"171573948","full_name":"iaguirre88/exception_notification_telegram","owner":"iaguirre88","description":"Telegram notifier for exception notification gem","archived":false,"fork":false,"pushed_at":"2023-05-02T12:11:57.000Z","size":29,"stargazers_count":10,"open_issues_count":0,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-08-09T20:29:24.788Z","etag":null,"topics":["exception-notification","rails","ruby","telegram","telegram-notifier"],"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/iaguirre88.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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}},"created_at":"2019-02-20T00:44:35.000Z","updated_at":"2025-06-02T06:47:32.000Z","dependencies_parsed_at":"2024-11-13T15:43:44.098Z","dependency_job_id":null,"html_url":"https://github.com/iaguirre88/exception_notification_telegram","commit_stats":{"total_commits":25,"total_committers":4,"mean_commits":6.25,"dds":0.4,"last_synced_commit":"c932c52518d81c8850353e1e2a532eec33d4401c"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/iaguirre88/exception_notification_telegram","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iaguirre88%2Fexception_notification_telegram","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iaguirre88%2Fexception_notification_telegram/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iaguirre88%2Fexception_notification_telegram/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iaguirre88%2Fexception_notification_telegram/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iaguirre88","download_url":"https://codeload.github.com/iaguirre88/exception_notification_telegram/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iaguirre88%2Fexception_notification_telegram/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269823391,"owners_count":24480785,"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","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["exception-notification","rails","ruby","telegram","telegram-notifier"],"created_at":"2024-11-13T15:29:19.342Z","updated_at":"2025-08-11T05:11:46.006Z","avatar_url":"https://github.com/iaguirre88.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Exception Notification - Telegram Notifier\n\n[![Gem Version](https://badge.fury.io/rb/exception_notification_telegram.svg)](https://badge.fury.io/rb/exception_notification_telegram)\n[![Build Status](https://github.com/iaguirre88/exception_notification_telegram/actions/workflows/ruby.yml/badge.svg)](https://github.com/iaguirre88/exception_notification_telegram/actions/workflows/ruby.yml)\n\n\n---\n\nThe [Exception Notification](https://github.com/smartinez87/exception_notification) gem provides a set of notifiers for sending notifications when errors occur in a Rack/Rails application. This gem adds support for delivering notifications to Telegram.\n\n## Requirements\n* Ruby 2.7 or greater\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'exception_notification'\ngem 'exception_notification_telegram'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install exception_notification_telegram\n\n## Usage\nIn order to receive exceptions in Telegram, you need to create a [Telegram Channel](https://telegram.org/tour/channels) and a [Telegram Bot](https://core.telegram.org/bots). Then, add the bot to the channel from the Telegram app.\n\nTo configure it, you need to set the channel name and the bot token, like this:\n\n```ruby\nRails.application.config.middleware.use ExceptionNotification::Rack,\n                                        email: {\n                                          email_prefix: '[PREFIX] ',\n                                          sender_address: %{\"notifier\" \u003cnotifier@example.com\u003e},\n                                          exception_recipients: %w{exceptions@example.com}\n                                        },\n                                        telegram: {\n\t\t\t\t\t  token: 'TELEGRAM-TOKEN',\n                                          channel: '@channel_name'\n                                        }\n```\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/iaguirre88/exception_notification_telegram. 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## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n\n## Code of Conduct\n\nEveryone interacting in the ExceptionNotificationTelegram project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/iaguirre88/exception_notification_telegram/blob/master/CODE_OF_CONDUCT.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiaguirre88%2Fexception_notification_telegram","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiaguirre88%2Fexception_notification_telegram","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiaguirre88%2Fexception_notification_telegram/lists"}