aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sync.gemspec
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-17 12:21:29 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-17 12:21:29 +0000
commit83a39c90ef6ea0c33334d2a5a41d04e3912ac79e (patch)
tree6fc116a3afc76b4d694853be1ee6941c8c2afab2 /lib/sync.gemspec
parentfa04bc72d0380137770974efd85b1c34f06b0bd4 (diff)
downloadruby-83a39c90ef6ea0c33334d2a5a41d04e3912ac79e.tar.gz
Promote Synchronizer to default gems.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/sync.gemspec')
-rw-r--r--lib/sync.gemspec22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/sync.gemspec b/lib/sync.gemspec
new file mode 100644
index 0000000000..5c664657c6
--- /dev/null
+++ b/lib/sync.gemspec
@@ -0,0 +1,22 @@
+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