-
Notifications
You must be signed in to change notification settings - Fork 13
/
zipkin.gemspec
29 lines (24 loc) · 1.05 KB
/
zipkin.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'zipkin'
spec.version = '1.6.3'
spec.authors = ['SaleMove TechMovers']
spec.email = ['[email protected]']
spec.summary = 'OpenTracing Tracer implementation for Zipkin in Ruby'
spec.description = ''
spec.homepage = 'https://github.com/salemove/zipkin-ruby-opentracing'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop', '~> 0.54.0'
spec.add_development_dependency 'rubocop-rspec', '~> 1.24.0'
spec.add_dependency 'json'
spec.add_dependency 'opentracing', '~> 0.3'
end