Sha256: c82f8f903e20b59fb3c3c6b474d55370c1ad509a3eb69953a2685255f98cdbeb

Contents?: true

Size: 1.28 KB

Versions: 4

Compression:

Stored size: 1.28 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'metricize/version'

Gem::Specification.new do |spec|
  spec.name          = "metricize"
  spec.version       = Metricize::VERSION
  spec.authors       = ["Matt McNeil"]
  spec.email         = ["mmcneil@liveworld.com"]
  spec.description   = %q{Simple client/forwarder system to aggregate metrics and periodically send them to a stats service}
  spec.summary       = %q{Collect, aggregate, and send metrics to a stats service}
  spec.homepage      = ""
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.3"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "rspec"
  spec.add_development_dependency "timecop"
  spec.add_development_dependency "fakeredis"
  spec.add_development_dependency "simplecov"
  spec.add_development_dependency "pry"

  spec.add_runtime_dependency "rest-client"
  spec.add_runtime_dependency "json"
  spec.add_runtime_dependency "redis"
  spec.add_runtime_dependency "ascii_charts"

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
metricize-0.5.3 metricize.gemspec
metricize-0.5.2 metricize.gemspec
metricize-0.5.1 metricize.gemspec
metricize-0.5.0 metricize.gemspec