-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckend-ruby.gemspec
More file actions
37 lines (29 loc) · 1.43 KB
/
checkend-ruby.gemspec
File metadata and controls
37 lines (29 loc) · 1.43 KB
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
37
# frozen_string_literal: true
require_relative 'lib/checkend/version'
Gem::Specification.new do |spec|
spec.name = 'checkend-ruby'
spec.version = Checkend::VERSION
spec.authors = ['Simon Chiu']
spec.email = ['simon@checkend.com']
spec.summary = 'Ruby SDK for Checkend error monitoring'
spec.description = 'Capture and report errors from Ruby applications to Checkend. ' \
'Includes automatic integrations for Rails, Rack, Sidekiq, and Solid Queue.'
spec.homepage = 'https://github.com/Checkend/checkend-ruby'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.7.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/Checkend/checkend-ruby'
spec.metadata['changelog_uri'] = 'https://github.com/Checkend/checkend-ruby/blob/main/CHANGELOG.md'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir.chdir(__dir__) do
Dir['{lib}/**/*', 'LICENSE', 'README.md', 'CHANGELOG.md'].reject { |f| File.directory?(f) }
end
spec.require_paths = ['lib']
# Ruby stdlib gems being extracted in Ruby 3.4+/3.5+
# Only add as dependencies for Ruby versions where they're no longer bundled
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.4') # rubocop:disable Gemspec/RubyVersionGlobalsUsage
spec.add_dependency 'json'
spec.add_dependency 'logger'
spec.add_dependency 'uri'
end
end