Sha256: 4119a76669400c89466b84dfdd5c8a2f917b70ee4a75124c8f96d2cbc3e7cf9d

Contents?: true

Size: 1.87 KB

Versions: 5

Compression:

Stored size: 1.87 KB

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'opentracing/instrumentation/version'

Gem::Specification.new do |spec|
  spec.name          = 'opentracing-instrumentation'
  spec.version       = OpenTracing::Instrumentation::VERSION
  spec.authors       = ['Fedorenko Dmitrij']
  spec.email         = ['job@fedorenko-d.ru']

  spec.summary       = 'OpenTracing instrumentation for popular ruby libraries'
  spec.description   = 'OpenTracing instrumentation for Mongo, Faraday, Rack and PORO'
  spec.homepage      = 'https://gitlab.com/c0va23/ruby-opentracing-instrumentation.'
  spec.license       = 'MIT'

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |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_runtime_dependency 'json'
  spec.add_runtime_dependency 'opentracing', '~> 0.5.0'

  spec.add_development_dependency 'bson', '~> 4.0'
  spec.add_development_dependency 'bundler', File.read('.BUNDLER_VERSION').strip
  spec.add_development_dependency 'bunny', '~> 2.0'
  spec.add_development_dependency 'faraday', '~> 0.9.2'
  spec.add_development_dependency 'hutch', '~> 0.26.0'
  spec.add_development_dependency 'rack', '~> 2.2.2'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'redis', '~> 3.3.5'
  spec.add_development_dependency 'rspec', '~> 3.0'
  spec.add_development_dependency 'rubocop', '~> 0.80.0'
  spec.add_development_dependency 'rubocop-rspec', '~> 1.38.1'
  spec.add_development_dependency 'thrift', '~> 0.11.0'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
opentracing-instrumentation-0.1.7 opentracing-instrumentation.gemspec
opentracing-instrumentation-0.1.6 opentracing-instrumentation.gemspec
opentracing-instrumentation-0.1.5 opentracing-instrumentation.gemspec
opentracing-instrumentation-0.1.4 opentracing-instrumentation.gemspec
opentracing-instrumentation-0.1.3 opentracing-instrumentation.gemspec