Sha256: 48397e391f1261ac46655cc9018522d124f3354a0285ceea17ff779139a181a2
Contents?: true
Size: 973 Bytes
Versions: 2
Compression:
Stored size: 973 Bytes
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/thread_safe/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ["Charles Oliver Nutter", "thedarkone"] gem.email = ["headius@headius.com", "thedarkone2@gmail.com"] gem.description = %q{Thread-safe collections and utilities for Ruby} gem.summary = %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($\) | Dir['{lib,examples,test}/**/*.jar'] 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_dependency 'atomic' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
thread_safe-0.1.3 | thread_safe.gemspec |
thread_safe-0.1.3-java | thread_safe.gemspec |