Sha256: cf9472554c63b36cc3612c3b00ddfad80c74e4fde23e9ddcb71e60789923cf4e
Contents?: true
Size: 930 Bytes
Versions: 1
Compression:
Stored size: 930 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "synchronicity/version" Gem::Specification.new do |s| s.name = "synchronicity" s.version = Synchronicity::VERSION s.authors = ["Ben Langfeld"] s.email = ["ben@langfeld.me"] s.homepage = "https://github.com/benlangfeld/synchronicity" s.summary = %q{Concurrency aids for Ruby, mostly around thread synchronisation.} s.description = %q{Includes CountDownLatch, a synchronization aid that allows one or more threads to wait until a set of operations being performed in other threads completes} s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_development_dependency 'rake' s.add_development_dependency 'minitest' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
synchronicity-1.0.0 | synchronicity.gemspec |