Sha256: 72a0f64817e122ca64236a7354971d600252d3b20a825b11f85e1d9901668b3a

Contents?: true

Size: 1.04 KB

Versions: 2

Compression:

Stored size: 1.04 KB

Contents

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rack/stackprof/version'

Gem::Specification.new do |spec|
  spec.name          = 'rack-stackprof'
  spec.version       = Rack::Stackprof::VERSION
  spec.authors       = ['Takashi Kokubun']
  spec.email         = ['takashikkbn@gmail.com']

  spec.summary       = %q{Periodically dump StackProf profile result to tmp directory with easy-to-understand filename}
  spec.description   = %q{Periodically dump StackProf profile result to tmp directory with easy-to-understand filename}
  spec.homepage      = 'https://github.com/k0kubun/rack-stackprof'
  spec.license       = 'MIT'

  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 'stackprof', '>= 0.2.12'
  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'rake'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rack-stackprof-0.2.1 rack-stackprof.gemspec
rack-stackprof-0.2.0 rack-stackprof.gemspec