Sha256: 02580933869b0dd21e0afc1641d561225a41bb3dd75141f8baf35c97303ca67c

Contents?: true

Size: 907 Bytes

Versions: 3

Compression:

Stored size: 907 Bytes

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "utrace/version"

Gem::Specification.new do |spec|
  spec.name          = "utrace"
  spec.version       = Utrace::VERSION
  spec.authors       = ["ken"]
  spec.email         = ["block24block@gmail.com"]

  spec.summary       = %q{Unified trace tool}
  spec.homepage      = "https://github.com/turnon/utrace"
  spec.license       = "MIT"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |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"]
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
utrace-0.3.1 utrace.gemspec
utrace-0.3.0 utrace.gemspec
utrace-0.2.0 utrace.gemspec