Sha256: b9ea2626f06941710c3f6433167089126b4124bccd63ad988a23b317a6479ce3

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'spectator-rb'
  spec.version       = Spectator::VERSION
  spec.authors       = ['Daniel Muino']
  spec.email         = ['dmuino@netflix.com']
  spec.licenses      = ['Apache-2.0']

  spec.summary       = 'Simple library for instrumenting code to record ' \
    'dimensional time series.'
  spec.description   = 'Library for instrumenting ruby applications, ' \
    'sending metrics to an Atlas aggregator service.'
  spec.homepage      = 'https://github.com/Netflix/spectator-rb'

  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_development_dependency 'bundler', '~> 1.16'
  spec.add_development_dependency 'minitest', '~> 5.0'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rubocop', '~> 0.55'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spectator-rb-0.1.0 spectator.gemspec