Sha256: 32875f57ee1325bdc621ce62042bf0a94dd45ea1463dc7b748b796960b3e6e53

Contents?: true

Size: 921 Bytes

Versions: 1

Compression:

Stored size: 921 Bytes

Contents

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

Gem::Specification.new do |gem|
  gem.name          = 'thread-parent'
  gem.version       = ThreadParent::VERSION
  gem.authors       = ['Mike Evans']
  gem.email         = ['mike@urlgonomics.com']
  gem.description   = %q{ThreadParent facilitates spawning threads that maintain a reference to the thread that created them. The primary goal is to allow thread local variable lookup through the ancestor chain.}
  gem.summary       = gem.description
  gem.homepage      = 'https://github.com/mje113/thread-parent'

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
thread-parent-1.0.0 thread-parent.gemspec