forked from newrelic/newrelic-ruby-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewrelic_rpm.gemspec
65 lines (60 loc) · 3.05 KB
/
newrelic_rpm.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'new_relic/version'
require 'new_relic/latest_changes'
Gem::Specification.new do |s|
s.name = "newrelic_rpm"
s.version = NewRelic::VERSION::STRING
s.required_ruby_version = '>= 2.2.0'
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to?(:required_rubygems_version=)
s.authors = ["Tanna McClure", "Kayla Reopelle", "James Bunch", "Hannah Ramadan"]
s.licenses = ['Apache-2.0']
s.description = <<-EOS
New Relic is a performance management system, developed by New Relic,
Inc (http://www.newrelic.com). New Relic provides you with deep
information about the performance of your web application as it runs
in production. The New Relic Ruby agent is dual-purposed as a either a
Gem or plugin, hosted on
https://github.com/newrelic/newrelic-ruby-agent/
EOS
s.email = "support@newrelic.com"
s.executables = %w[newrelic_cmd newrelic nrdebug]
s.extra_rdoc_files = [
"CHANGELOG.md",
"LICENSE",
"README.md",
"CONTRIBUTING.md",
"newrelic.yml"
]
s.metadata = {
'bug_tracker_uri' => 'https://github.com/newrelic/newrelic-ruby-agent/issues',
'changelog_uri' => 'https://github.com/newrelic/newrelic-ruby-agent/blob/main/CHANGELOG.md',
'documentation_uri' => 'https://docs.newrelic.com/docs/agents/ruby-agent',
'source_code_uri' => 'https://github.com/newrelic/newrelic-ruby-agent',
"homepage_uri" => "https://newrelic.com/ruby"
}
file_list = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|infinite_tracing|\.github)/(?!agent_helper.rb)}) }
build_file_path = 'lib/new_relic/build.rb'
file_list << build_file_path if File.exist?(build_file_path)
s.files = file_list
s.homepage = "https://github.com/newrelic/rpm"
s.require_paths = ["lib"]
s.summary = "New Relic Ruby Agent"
s.add_development_dependency 'bundler'
s.add_development_dependency 'feedjira', '3.2.1' unless ENV['CI'] || RUBY_VERSION < '2.5' # for Gabby
s.add_development_dependency 'httparty' unless ENV['CI'] # for perf tests and Gabby
s.add_development_dependency 'minitest', "#{RUBY_VERSION >= '2.7.0' ? '5.3.3' : '4.7.5'}"
s.add_development_dependency 'minitest-stub-const', '0.6'
s.add_development_dependency 'mocha', '~> 1.16'
s.add_development_dependency 'pry' unless ENV['CI']
s.add_development_dependency 'rake', '12.3.3'
s.add_development_dependency 'rubocop' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
s.add_development_dependency 'rubocop-minitest' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
s.add_development_dependency 'rubocop-performance' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
s.add_development_dependency 'rubocop-rake' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
s.add_development_dependency 'simplecov' if RUBY_VERSION >= '2.7.0'
s.add_development_dependency 'thor' unless ENV['CI']
s.add_development_dependency 'warning' if RUBY_VERSION >= '2.4.0'
s.add_development_dependency 'yard', "#{RUBY_VERSION < '2.3.0' ? '0.9.26' : '> 0.9.26'}"
end