exception_notification_telegram 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/.travis.yml +16 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +64 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/example/sample_app.rb +59 -0
- data/exception_notification_telegram.gemspec +31 -0
- data/lib/exception_notification_telegram.rb +114 -0
- data/lib/exception_notification_telegram/version.rb +3 -0
- metadata +127 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 3b12ecde6c8da572aae68af5c2a297b861e94c2bf192f7401269382e95f81403
|
4
|
+
data.tar.gz: 314ae01ea23de43955780c3bc3b90135a78c46d3321a35a10df9d59e06eb3fa0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ec0839595c9875e0e4e6e12f5ec02e50815440cab99b1e56a385bee8d7302c0e78667eaacbb9c731cd1c145a5e94fcffe0c1b19ac697059bf37a0774443dca7c
|
7
|
+
data.tar.gz: 3704ffa3c5a7003351077f6f63a874ef0946e71cc2a5705cb9d18dab3408a2b90739d87a42b548914602b3376a2722cc41fee2dc1322f00a4ecec02b3161f4a6
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
sudo: false
|
3
|
+
language: ruby
|
4
|
+
cache: bundler
|
5
|
+
rvm:
|
6
|
+
- 2.3.6
|
7
|
+
- 2.4.3
|
8
|
+
- 2.5.0
|
9
|
+
before_install:
|
10
|
+
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
|
11
|
+
- gem install bundler -v 1.17.3
|
12
|
+
|
13
|
+
install:
|
14
|
+
- bundle install --jobs=3 --retry=3
|
15
|
+
|
16
|
+
script: bundle exec rake spec
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at zirion0@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2019 Ignacio Aguirrezabal
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
# Exception Notification - Telegram Notifier
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.com/iaguirre88/exception_notification_telegram.svg?branch=master)](https://travis-ci.com/iaguirre88/exception_notification_telegram)
|
4
|
+
|
5
|
+
---
|
6
|
+
|
7
|
+
The [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.
|
8
|
+
|
9
|
+
## Requirements
|
10
|
+
* Ruby 2.3 or greater
|
11
|
+
|
12
|
+
## Installation
|
13
|
+
|
14
|
+
Add this line to your application's Gemfile:
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
gem 'exception_notification'
|
18
|
+
gem 'exception_notification_telegram'
|
19
|
+
```
|
20
|
+
|
21
|
+
And then execute:
|
22
|
+
|
23
|
+
$ bundle
|
24
|
+
|
25
|
+
Or install it yourself as:
|
26
|
+
|
27
|
+
$ gem install exception_notification_telegram
|
28
|
+
|
29
|
+
## Usage
|
30
|
+
In 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.
|
31
|
+
|
32
|
+
To configure it, you need to set the channel name and the bot token, like this:
|
33
|
+
|
34
|
+
```ruby
|
35
|
+
Rails.application.config.middleware.use ExceptionNotification::Rack,
|
36
|
+
email: {
|
37
|
+
email_prefix: '[PREFIX] ',
|
38
|
+
sender_address: %{"notifier" <notifier@example.com>},
|
39
|
+
exception_recipients: %w{exceptions@example.com}
|
40
|
+
},
|
41
|
+
telegram: {
|
42
|
+
token: 'TELEGRAM-TOKEN',
|
43
|
+
channel: '@channel_name'
|
44
|
+
}
|
45
|
+
```
|
46
|
+
|
47
|
+
|
48
|
+
## Development
|
49
|
+
|
50
|
+
After 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.
|
51
|
+
|
52
|
+
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 tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
53
|
+
|
54
|
+
## Contributing
|
55
|
+
|
56
|
+
Bug 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.
|
57
|
+
|
58
|
+
## License
|
59
|
+
|
60
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
61
|
+
|
62
|
+
## Code of Conduct
|
63
|
+
|
64
|
+
Everyone 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).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "exception_notification_telegram"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
# -------------------------------------------
|
2
|
+
# To run the application: ruby examples/sample_app.rb
|
3
|
+
# -------------------------------------------
|
4
|
+
|
5
|
+
require 'bundler/inline'
|
6
|
+
|
7
|
+
gemfile do
|
8
|
+
source 'https://rubygems.org'
|
9
|
+
|
10
|
+
gem 'rails', '5.0.0'
|
11
|
+
gem 'exception_notification', '4.3.0'
|
12
|
+
gem 'exception_notification_telegram', path: '../../exception_notification_telegram'
|
13
|
+
end
|
14
|
+
|
15
|
+
class SampleApp < Rails::Application
|
16
|
+
config.middleware.use ExceptionNotification::Rack,
|
17
|
+
telegram: {
|
18
|
+
token: ENV['TOKEN'],
|
19
|
+
channel: ENV['CHANNEL']
|
20
|
+
}
|
21
|
+
|
22
|
+
config.secret_key_base = 'my secret key base'
|
23
|
+
file = File.open('sample_app.log', 'w')
|
24
|
+
logger = Logger.new(file)
|
25
|
+
Rails.logger = logger
|
26
|
+
|
27
|
+
routes.draw do
|
28
|
+
get 'raise_sample_exception', to: 'exceptions#raise_sample_exception'
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
require 'action_controller/railtie'
|
33
|
+
require 'active_support'
|
34
|
+
|
35
|
+
class ExceptionsController < ActionController::Base
|
36
|
+
include Rails.application.routes.url_helpers
|
37
|
+
|
38
|
+
def raise_sample_exception
|
39
|
+
puts 'Raising exception!'
|
40
|
+
raise 'Sample exception raised, you should receive a notification!'
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
require 'minitest/autorun'
|
45
|
+
|
46
|
+
class Test < Minitest::Test
|
47
|
+
include Rack::Test::Methods
|
48
|
+
|
49
|
+
def test_raise_exception
|
50
|
+
get '/raise_sample_exception'
|
51
|
+
puts 'Working OK!'
|
52
|
+
end
|
53
|
+
|
54
|
+
private
|
55
|
+
|
56
|
+
def app
|
57
|
+
Rails.application
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "exception_notification_telegram/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "exception_notification_telegram"
|
8
|
+
spec.version = ExceptionNotificationTelegram::VERSION
|
9
|
+
spec.authors = ["Ignacio Aguirrezabal"]
|
10
|
+
spec.email = ["zirion0@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = "Telegram notifier for exception notification gem"
|
13
|
+
spec.homepage = "https://github.com/iaguirre88/exception_notification_telegram"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
# Specify which files should be added to the gem when it is released.
|
17
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
18
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
19
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
20
|
+
end
|
21
|
+
spec.bindir = "exe"
|
22
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
|
+
spec.require_paths = ["lib"]
|
24
|
+
|
25
|
+
spec.add_development_dependency "bundler", "~> 1.17"
|
26
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
27
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
28
|
+
|
29
|
+
spec.add_dependency "exception_notification", "~> 4.3"
|
30
|
+
spec.add_dependency "httparty", "~> 0.10.2"
|
31
|
+
end
|
@@ -0,0 +1,114 @@
|
|
1
|
+
require 'exception_notification_telegram/version'
|
2
|
+
require 'httparty'
|
3
|
+
require 'json'
|
4
|
+
|
5
|
+
module ExceptionNotifier
|
6
|
+
class TelegramNotifier
|
7
|
+
def initialize(options)
|
8
|
+
@token = options.delete(:token)
|
9
|
+
@channel = options.delete(:channel)
|
10
|
+
|
11
|
+
raise ArgumentError, "You must provide 'token' and 'channel' option" unless @token && @channel
|
12
|
+
end
|
13
|
+
|
14
|
+
def call(exception, options = {})
|
15
|
+
@options = options
|
16
|
+
@exception = exception
|
17
|
+
|
18
|
+
url = "https://api.telegram.org/bot#{@token}/sendMessage"
|
19
|
+
HTTParty.post(url, httparty_options)
|
20
|
+
end
|
21
|
+
|
22
|
+
private
|
23
|
+
|
24
|
+
attr_reader :options, :exception
|
25
|
+
|
26
|
+
def httparty_options
|
27
|
+
payload = {
|
28
|
+
chat_id: @channel,
|
29
|
+
text: message,
|
30
|
+
parse_mode: 'Markdown'
|
31
|
+
}
|
32
|
+
|
33
|
+
httparty_options = {}
|
34
|
+
httparty_options[:headers] = { 'Content-Type' => 'application/json' }
|
35
|
+
httparty_options[:body] = payload.to_json
|
36
|
+
httparty_options
|
37
|
+
end
|
38
|
+
|
39
|
+
def message
|
40
|
+
text = [
|
41
|
+
header,
|
42
|
+
'',
|
43
|
+
"⚠️ Error 500 in #{defined?(Rails) ? Rails.env : 'N/A'} ⚠️",
|
44
|
+
"*#{exception.message.tr('`', "'")}*"
|
45
|
+
]
|
46
|
+
|
47
|
+
text += message_request
|
48
|
+
text += message_backtrace
|
49
|
+
|
50
|
+
text.join("\n")
|
51
|
+
end
|
52
|
+
|
53
|
+
def header
|
54
|
+
text = ["\nApplication: *#{app_name}*"]
|
55
|
+
|
56
|
+
errors_text = errors_count > 1 ? errors_count : 'An'
|
57
|
+
text << "#{errors_text} *#{exception.class}* occured#{controller_text}."
|
58
|
+
|
59
|
+
text
|
60
|
+
end
|
61
|
+
|
62
|
+
def message_request
|
63
|
+
return [] unless (env = options[:env])
|
64
|
+
|
65
|
+
request = ActionDispatch::Request.new(env)
|
66
|
+
|
67
|
+
[
|
68
|
+
'',
|
69
|
+
'*Request:*',
|
70
|
+
'```',
|
71
|
+
"* url : #{request.original_url}",
|
72
|
+
"* http_method : #{request.method}",
|
73
|
+
"* ip_address : #{request.remote_ip}",
|
74
|
+
"* parameters : #{request.filtered_parameters}",
|
75
|
+
"* timestamp : #{Time.current}",
|
76
|
+
'```'
|
77
|
+
]
|
78
|
+
end
|
79
|
+
|
80
|
+
def message_backtrace
|
81
|
+
backtrace = exception.backtrace
|
82
|
+
|
83
|
+
return [] unless backtrace
|
84
|
+
|
85
|
+
text = []
|
86
|
+
|
87
|
+
text << ''
|
88
|
+
text << '*Backtrace:*'
|
89
|
+
text << '```'
|
90
|
+
backtrace.first(3).each { |line| text << "* #{line}" }
|
91
|
+
text << '```'
|
92
|
+
|
93
|
+
text
|
94
|
+
end
|
95
|
+
|
96
|
+
def app_name
|
97
|
+
options[:app_name] || rails_app_name || 'N/A'
|
98
|
+
end
|
99
|
+
|
100
|
+
def errors_count
|
101
|
+
options[:accumulated_errors_count].to_i
|
102
|
+
end
|
103
|
+
|
104
|
+
def rails_app_name
|
105
|
+
Rails.application.class.name.underscore if defined?(Rails)
|
106
|
+
end
|
107
|
+
|
108
|
+
def controller_text
|
109
|
+
controller = options.dig(:env, 'action_controller.instance')
|
110
|
+
|
111
|
+
" in *#{controller.controller_name}##{controller.action_name}*" if controller
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
metadata
ADDED
@@ -0,0 +1,127 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: exception_notification_telegram
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ignacio Aguirrezabal
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-04-18 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.17'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.17'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: exception_notification
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '4.3'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '4.3'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: httparty
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.10.2
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.10.2
|
83
|
+
description:
|
84
|
+
email:
|
85
|
+
- zirion0@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- ".travis.yml"
|
92
|
+
- CODE_OF_CONDUCT.md
|
93
|
+
- Gemfile
|
94
|
+
- LICENSE.txt
|
95
|
+
- README.md
|
96
|
+
- Rakefile
|
97
|
+
- bin/console
|
98
|
+
- bin/setup
|
99
|
+
- example/sample_app.rb
|
100
|
+
- exception_notification_telegram.gemspec
|
101
|
+
- lib/exception_notification_telegram.rb
|
102
|
+
- lib/exception_notification_telegram/version.rb
|
103
|
+
homepage: https://github.com/iaguirre88/exception_notification_telegram
|
104
|
+
licenses:
|
105
|
+
- MIT
|
106
|
+
metadata: {}
|
107
|
+
post_install_message:
|
108
|
+
rdoc_options: []
|
109
|
+
require_paths:
|
110
|
+
- lib
|
111
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
112
|
+
requirements:
|
113
|
+
- - ">="
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '0'
|
116
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
117
|
+
requirements:
|
118
|
+
- - ">="
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '0'
|
121
|
+
requirements: []
|
122
|
+
rubyforge_project:
|
123
|
+
rubygems_version: 2.7.8
|
124
|
+
signing_key:
|
125
|
+
specification_version: 4
|
126
|
+
summary: Telegram notifier for exception notification gem
|
127
|
+
test_files: []
|