зеркало из https://github.com/github/ruby.git
23 строки
909 B
Ruby
23 строки
909 B
Ruby
require_relative "sync"
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "sync"
|
|
spec.version = Sync::VERSION
|
|
spec.authors = ["Keiju ISHITSUKA"]
|
|
spec.email = ["keiju@ruby-lang.org"]
|
|
|
|
spec.summary = %q{A module that provides a two-phase lock with a counter.}
|
|
spec.description = %q{A module that provides a two-phase lock with a counter.}
|
|
spec.homepage = "https://github.com/ruby/sync"
|
|
spec.license = "BSD-2-Clause"
|
|
|
|
spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/sync.rb", "sync.gemspec"]
|
|
spec.bindir = "exe"
|
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
spec.require_paths = ["lib"]
|
|
|
|
spec.add_development_dependency "bundler"
|
|
spec.add_development_dependency "rake"
|
|
spec.add_development_dependency "test-unit"
|
|
end
|