{"id":17500384,"url":"https://github.com/amirmujkic/multi_bug","last_synced_at":"2026-01-20T02:47:42.651Z","repository":{"id":52421064,"uuid":"161454647","full_name":"amirmujkic/multi_bug","owner":"amirmujkic","description":":bug: Bug reporting via multiple platforms :ant:","archived":false,"fork":false,"pushed_at":"2021-04-29T19:22:32.000Z","size":23,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-13T07:20:53.094Z","etag":null,"topics":["airbrake","bug","bugs","bugsnag","error-monitoring","error-reporting","exceptions","hacktoberfest","rails","ruby"],"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/amirmujkic.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-12-12T08:15:41.000Z","updated_at":"2020-10-06T08:01:36.000Z","dependencies_parsed_at":"2022-09-13T17:51:25.558Z","dependency_job_id":null,"html_url":"https://github.com/amirmujkic/multi_bug","commit_stats":null,"previous_names":["amirmujkic/bug_bot"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/amirmujkic/multi_bug","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amirmujkic%2Fmulti_bug","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amirmujkic%2Fmulti_bug/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amirmujkic%2Fmulti_bug/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amirmujkic%2Fmulti_bug/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amirmujkic","download_url":"https://codeload.github.com/amirmujkic/multi_bug/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amirmujkic%2Fmulti_bug/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28594958,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"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":["airbrake","bug","bugs","bugsnag","error-monitoring","error-reporting","exceptions","hacktoberfest","rails","ruby"],"created_at":"2024-10-19T18:09:02.277Z","updated_at":"2026-01-20T02:47:42.637Z","avatar_url":"https://github.com/amirmujkic.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ch1 align=\"center\"\u003eMultiBug\u003c/h1\u003e\n  \u003cp align=\"center\"\u003eError reporting via multiple platforms.\u003c/p\u003e\n  \u003cp align=\"center\"\u003e\n    \u003ca href=\"https://travis-ci.org/amirmujkic/bug_bot\"\u003e\n      \u003cimg alt=\"Build Status\" src=\"https://travis-ci.org/amirmujkic/multi_bug.svg?branch=master\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"http://badge.fury.io/rb/multi_bug\"\u003e\n      \u003cimg alt=\"Release\" src=\"https://badge.fury.io/rb/multi_bug.svg\"\u003e\n    \u003c/a\u003e\n  \u003c/p\u003e\n\u003c/p\u003e\n\n---\n\n## Features\n- Easily switch error monitoring provider by changing config only\n- Supported adapters\n  - [Airbrake](https://github.com/airbrake/airbrake-ruby)\n  - [Bugsnag](https://github.com/bugsnag/bugsnag-ruby)\n- Upcoming features\n  - Aditional adapters for [Sentry](https://github.com/getsentry/raven-ruby) and [Rollbar](https://github.com/rollbar/rollbar-gem)\n  - Advanced configuration\n  - Support for common advanced features\n\n## Getting started\n\nTo install, run:\n\n    gem install multi_bug\n\nAdd the following to your Gemfile:\n\n    gem \"multi_bug\", '~\u003e 0.2.2'\n\nAfter you've added the `multi_bug` gem, please install one of the gems for the monitoring platform you want to use.\nTo accomplish that, you can use one of the following installation guides:\n\n - [Airbrake](https://github.com/airbrake/airbrake-ruby#installation)\n - [Bugsnag](https://docs.bugsnag.com/platforms/ruby/rails/#installation)\n\n## Usage\n\n### Reporting exceptions\n\nAfter installing one of the supported gems, reporting of unhandled exceptions should happen automatically and be visible in their respective monitoring dashboard.\n\nReporting of handled exceptions can be done with:\n\n```ruby\nbegin\n  raise 'Robots are taking over!'\nrescue =\u003e exception\n  MultiBug.notify(exception)\nend\n```\n\n#### Custom payload\nIf you need to add custom payload to the error report you can do this by providing an options hash.\n\n```ruby\nbegin\n  raise 'Robots are taking over!'\nrescue =\u003e exception\n  MultiBug.notify(exception, {\n    foo: {\n      bar: 'baz'\n    }\n  })\nend\n```\n\n### Changing the provider\nChanging of the monitoring provider should be easily achieved just by installing/configuring the other gem.\n\n## Tests\n\nTo test, run:\n\n    bundle exec rspec\n\n## Versioning\n\nRead [Semantic Versioning](https://semver.org) for details. Briefly, it means:\n\n- Major (X.y.z) - Incremented for any backwards incompatible public API changes.\n- Minor (x.Y.z) - Incremented for new, backwards compatible, public API enhancements/fixes.\n- Patch (x.y.Z) - Incremented for small, backwards compatible, bug fixes.\n\n## Contributions\n\nRead [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n## License\n\nCopyright 2018 []().\nRead [LICENSE](LICENSE.md) for details.\n\n## History\n\nRead [CHANGES](CHANGES.md) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famirmujkic%2Fmulti_bug","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famirmujkic%2Fmulti_bug","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famirmujkic%2Fmulti_bug/lists"}