Sha256: e45681999c709753b69bfa7501dca6b4abc170776f13bef18cfb20e0dae0c541

Contents?: true

Size: 1.1 KB

Versions: 2

Compression:

Stored size: 1.1 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_dependency 'atomic', ['>= 1.1.7', '< 2']
  gem.add_development_dependency 'rake'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
thread_safe-0.2.0-java thread_safe.gemspec
thread_safe-0.2.0 thread_safe.gemspec