-
Notifications
You must be signed in to change notification settings - Fork 281
/
rollbar.gemspec
31 lines (27 loc) · 1.61 KB
/
rollbar.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/rollbar/version', __FILE__)
Gem::Specification.new do |gem|
_is_jruby = defined?(JRUBY_VERSION) || (defined?(RUBY_ENGINE) && RUBY_ENGINE == 'jruby')
gem.authors = ['Rollbar, Inc.']
gem.email = ['[email protected]']
gem.description = "Track and debug errors in your Ruby applications with ease using Rollbar. With this gem, you can easily monitor and report on exceptions and other errors in your code, helping you identify and fix issues more quickly. Rollbar's intuitive interface and advanced error tracking features make it the perfect tool for ensuring the stability and reliability of your Ruby applications."
gem.executables = ['rollbar-rails-runner']
gem.summary = 'Reports exceptions to Rollbar'
gem.homepage = 'https://rollbar.com'
gem.license = 'MIT'
gem.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
gem.files += ['spec/support/rollbar_api.rb'] # useful helper for app spec/tests.
gem.name = 'rollbar'
gem.require_paths = ['lib']
gem.required_ruby_version = '>= 2.0.0'
gem.version = Rollbar::VERSION
if gem.respond_to?(:metadata)
gem.metadata['changelog_uri'] = 'https://github.com/rollbar/rollbar-gem/releases'
gem.metadata['source_code_uri'] = 'https://github.com/rollbar/rollbar-gem'
gem.metadata['bug_tracker_uri'] = 'https://github.com/rollbar/rollbar-gem/issues'
gem.metadata['homepage_uri'] = 'https://rollbar.com/'
gem.metadata['documentation_uri'] = 'https://docs.rollbar.com/docs/ruby'
end
end