Sha256: 05b91df89e1b7d34f8a7b65335ce3ee5674474f5c694b96bbf87184a5ffc6ed4

Contents?: true

Size: 1.31 KB

Versions: 11

Compression:

Stored size: 1.31 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "log_stats"
  spec.version       = LogStats::VERSION
  spec.authors       = ["Peter Marklund"]
  spec.email         = ["peter@marklunds.com"]

  spec.summary       = %q{Extract request statistics from Heroku logs}
  spec.description   = %q{}
  spec.homepage      = "https://github.com/peter/log_stats"
  spec.license       = "MIT"

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  if spec.respond_to?(:metadata)
    spec.metadata['allowed_push_host'] = "https://rubygems.org"
  else
    raise "RubyGems 2.0 or newer is required to protect against " \
      "public gem pushes."
  end

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "bin"
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.13"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "~> 5.0"
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
log_stats-0.4.9 log_stats.gemspec
log_stats-0.4.8 log_stats.gemspec
log_stats-0.4.7 log_stats.gemspec
log_stats-0.4.6 log_stats.gemspec
log_stats-0.4.5 log_stats.gemspec
log_stats-0.4.4 log_stats.gemspec
log_stats-0.4.3 log_stats.gemspec
log_stats-0.4.2 log_stats.gemspec
log_stats-0.4.1 log_stats.gemspec
log_stats-0.4.0 log_stats.gemspec
log_stats-0.3.0 log_stats.gemspec