-
Notifications
You must be signed in to change notification settings - Fork 24
/
thread_safe.gemspec
26 lines (23 loc) · 1.27 KB
/
thread_safe.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__) unless $:.include?('lib')
require 'thread_safe/version'
Gem::Specification.new do |gem|
gem.authors = ["Charles Oliver Nutter", "thedarkone"]
gem.email = ["[email protected]", "[email protected]"]
gem.summary = %q{Thread-safe collections and utilities for Ruby}
gem.description = %q{A collection of data structures and utilities to make thread-safe programming in Ruby easier}
gem.homepage = "https://github.com/headius/thread_safe"
gem.files = `git ls-files`.split($\)
gem.files += ['lib/thread_safe/jruby_cache_backend.jar'] if defined?(JRUBY_VERSION)
gem.files -= ['.gitignore'] # see https://github.com/headius/thread_safe/issues/40#issuecomment-42315441
gem.platform = 'java' if defined?(JRUBY_VERSION)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "thread_safe"
gem.require_paths = ["lib"]
gem.version = ThreadSafe::VERSION
gem.license = "Apache-2.0"
gem.add_development_dependency 'atomic', ['>= 1.1.7', '< 2']
gem.add_development_dependency 'rake'
gem.add_development_dependency 'minitest', '>= 4'
end