Sha256: 9baa972c1eb0a31d3b7e0fa9f13cc993c36072aa00d4f46843ff2c726f512490
Contents?: true
Size: 982 Bytes
Versions: 1
Compression:
Stored size: 982 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'stackprof/run/version' Gem::Specification.new do |spec| spec.name = "stackprof-run" spec.version = Stackprof::Run::VERSION spec.authors = ["Masataka Kuwabara"] spec.email = ["p.ck.t22@gmail.com"] spec.summary = %q{Run a ruby script with stackprof.} spec.description = %q{Run a ruby script with stackprof.} spec.homepage = "https://github.com/pocke/stackprof-run" 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.licenses = ['CC0-1.0'] spec.required_ruby_version = '>= 2.4.0' spec.add_runtime_dependency 'stackprof', ' >= 0.2.10' spec.add_development_dependency "rake", "~> 13.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stackprof-run-0.4.3 | stackprof-run.gemspec |