-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpassenger_datadog.gemspec
More file actions
32 lines (28 loc) · 1.1 KB
/
passenger_datadog.gemspec
File metadata and controls
32 lines (28 loc) · 1.1 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
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = 'passenger_datadog'
s.version = '1.1.0'
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.2.0'
s.authors = ['Ryan Rosenblum']
s.description = <<-DESCRIPTION
A tool for sending Passenger stats to Datadog.
DESCRIPTION
s.email = 'passenger_datadog@manheim.com'
s.files = `git ls-files bin lib LICENSE.txt README.md`
.split($RS)
s.test_files = []
s.executables = %w[passenger-datadog]
s.extra_rdoc_files = ['LICENSE.txt', 'README.md']
s.homepage = 'https://github.com/manheim/passenger-datadog'
s.licenses = ['MIT']
s.require_paths = ['lib']
s.summary = 'A tool for sending Passenger stats to Datadog'
s.add_runtime_dependency('daemons', '~> 1.0')
s.add_runtime_dependency('dogstatsd-ruby', '>= 2.0.0', '< 4.0.0')
s.add_runtime_dependency('nokogiri', '~> 1.0')
s.add_runtime_dependency('passenger', '>= 4.0.0', '<= 6.0.0')
s.add_development_dependency('rake', '~> 12.0')
s.add_development_dependency('rspec', '~> 3.3')
s.add_development_dependency('rubocop', '~> 0.55.0')
end