-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathprometheus-client.gemspec
More file actions
25 lines (21 loc) · 1018 Bytes
/
prometheus-client.gemspec
File metadata and controls
25 lines (21 loc) · 1018 Bytes
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
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'prometheus/client/version'
Gem::Specification.new do |s|
s.name = 'prometheus-client'
s.version = Prometheus::Client::VERSION
s.summary = 'A suite of instrumentation metric primitives' \
'that can be exposed through a web services interface.'
s.authors = ['Ben Kochie', 'Chris Sinjakli', 'Daniel Magliola']
s.email = ['superq@gmail.com', 'chris@sinjakli.co.uk', 'dmagliola@crystalgears.com']
s.homepage = 'https://github.com/prometheus/client_ruby'
s.license = 'Apache-2.0'
s.files = %w(README.md LICENSE) + Dir.glob('{lib/**/*}')
s.require_paths = ['lib']
s.add_dependency 'base64'
s.add_dependency 'cgi'
s.add_development_dependency 'benchmark'
s.add_development_dependency 'benchmark-ips'
s.add_development_dependency 'concurrent-ruby'
s.add_development_dependency 'timecop'
end