Sha256: 6119301e18a6e5e9abae68833242ef1dc718e1c428f5e20bca3613c9fdd1b12e
Contents?: true
Size: 1004 Bytes
Versions: 1
Compression:
Stored size: 1004 Bytes
Contents
# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = "test-tracer" spec.version = "1.0.0" spec.authors = ["iaintshine"] spec.email = ["bodziomista@gmail.com"] spec.summary = %q{OpenTracing compatible Tracer implementation to be used in tests in Ruby} spec.description = %q{} spec.homepage = "https://github.com/iaintshine/ruby-test-tracer" spec.license = "Apache-2.0" spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency 'opentracing', '~> 0.3.1' spec.add_development_dependency "bundler", "~> 1.15" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
test-tracer-1.0.0 | test-tracer.gemspec |