Sha256: b61b69217d0ac6bedcaaa4bb9847b2eda8ab744a862cb17296576ed8a83a3443
Contents?: true
Size: 1.11 KB
Versions: 4
Compression:
Stored size: 1.11 KB
Contents
# -*- 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 = ["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($\) gem.files += ['lib/thread_safe/jruby_cache_backend.jar'] if defined?(JRUBY_VERSION) 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' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
thread_safe-0.3.3-java | thread_safe.gemspec |
thread_safe-0.3.3 | thread_safe.gemspec |
thread_safe-0.3.2-java | thread_safe.gemspec |
thread_safe-0.3.2 | thread_safe.gemspec |