Sha256: be139e7d1e92859de409a567d16d148a435b8abb27bab70534bd1fcaca98e0d7

Contents?: true

Size: 894 Bytes

Versions: 1

Compression:

Stored size: 894 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']
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
thread-parent-1.0.1 thread-parent.gemspec