File: sync.gemspec

package info (click to toggle)
ruby-sync 0.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 120 kB
  • sloc: ruby: 293; sh: 4; makefile: 4
file content (27 lines) | stat: -rw-r--r-- 997 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
begin
  require_relative "lib/sync"
rescue LoadError
  # for Ruby core repository
  require_relative "sync"
end

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