Project

telebugs

0.0
The project is in a healthy, maintained state
Telebugs for Ruby is an error reporting library for Telebugs (https://telebugs.com/), a simple error monitoring tool for developers. With Telebugs, you can track production errors in real-time and report them to Telegram.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 3.23

Runtime

 Project Readme

Telebugs for Ruby

Gem Version

Simple error monitoring for developers. Monitor production errors in real-time and get them reported to Telegram with Telebugs.

Introduction

Any Ruby application or script can be integrated with Telebugs using the telebugs gem. The gem is designed to be simple and easy to use. It provides a simple API to send errors to Telebugs, which will then be reported to your Telegram project. This guide will help you get started with Telebugs for Ruby.

For full details, please refer to the Telebugs documentation.

Installation

Install the gem and add to the application's Gemfile by executing:

bundle add telebugs

If bundler is not being used to manage dependencies, install the gem by executing:

gem install telebugs

Usage

This is the minimal example that you can use to test Telebugs for Ruby with your project:

require "telebugs"

Telebugs.configure do |c|
  c.api_key = "YOUR_API_KEY"
end

begin
  1 / 0
rescue ZeroDivisionError => e
  Telebugs.report(e)
end

sleep 2

puts "An error was sent to Telebugs asynchronously.",
  "It will appear in your dashboard shortly.",
  "A notification was also sent to your Telegram chat."

Replace YOUR_API_KEY with your actual API key. You can ask @TelebugsBot for your API key or find it in your project's dashboard.

Telebugs for Ruby integrations

Telebugs for Ruby is a standalone gem that can be used with any Ruby application or script. It can be integrated with any Ruby framework or library.

We provide official integrations for the following Ruby platforms:

Ruby support policy

Telebugs for Ruby supports the following Ruby versions:

  • Ruby 3.0+

If you need support older rubies or other Ruby implementations, please contact us at help@telebugs.com.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To 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 the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/telebugs/telebugs-ruby.