forked from airbrake/airbrake-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathairbrake-ruby.gemspec
36 lines (32 loc) · 1.53 KB
/
airbrake-ruby.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
require './lib/airbrake-ruby/version'
Gem::Specification.new do |s|
s.name = 'airbrake-ruby'
s.version = Airbrake::AIRBRAKE_RUBY_VERSION.dup
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = 'Ruby notifier for https://airbrake.io'
s.description = <<DESC
Airbrake Ruby is a plain Ruby notifier for Airbrake (https://airbrake.io), the
leading exception reporting service. Airbrake Ruby provides minimalist API that
enables the ability to send any Ruby exception to the Airbrake dashboard. The
library is extremely lightweight, contains no dependencies and perfectly suits
plain Ruby applications. For apps that are built with Rails, Sinatra or any
other Rack-compliant web framework we offer the airbrake gem
(https://github.com/airbrake/airbrake). It has additional features such as
reporting of any unhandled exceptions automatically, integrations with Resque,
Sidekiq, Delayed Job and many more.
DESC
s.author = 'Airbrake Technologies, Inc.'
s.email = '[email protected]'
s.homepage = 'https://airbrake.io'
s.license = 'MIT'
s.require_path = 'lib'
s.files = ['lib/airbrake-ruby.rb', *Dir.glob('lib/**/*')]
s.test_files = Dir.glob('spec/**/*')
s.required_ruby_version = '>= 2.0'
s.add_development_dependency 'rspec', '~> 3'
s.add_development_dependency 'rake', '~> 10'
s.add_development_dependency 'pry', '~> 0'
s.add_development_dependency 'webmock', '~> 2.3'
s.add_development_dependency 'benchmark-ips', '~> 2'
s.add_development_dependency 'rubocop', '~> 0.47'
end