Sha256: a152212d8e60911f74ac28c4b8635241973c010a66015f86137ca04c6eae4fa7

Contents?: true

Size: 935 Bytes

Versions: 3

Compression:

Stored size: 935 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_development_dependency 'rake'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
thread-parent-1.0.4 thread-parent.gemspec
thread-parent-1.0.3 thread-parent.gemspec
thread-parent-1.0.2 thread-parent.gemspec