-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththreadlocal.gemspec
More file actions
21 lines (18 loc) · 854 Bytes
/
threadlocal.gemspec
File metadata and controls
21 lines (18 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "threadlocal"
spec.version = "0.0.1"
spec.authors = ["Martin Schürrer"]
spec.email = ["martin@schuerrer.org"]
spec.summary = %q{Java/Python-like OO thread local variables}
spec.description = %q{OO alternative to Thread#thread_variable_get/set}
spec.homepage = ""
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.5"
spec.add_development_dependency "rake"
spec.add_development_dependency "simplecov", "~> 0.7.1" # see https://github.com/colszowka/simplecov/issues/281
end