Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2019-08-07 18:44:23 +0300
committerPaul Okstad <pokstad@gitlab.com>2019-08-07 18:44:23 +0300
commit1b407318a6a865f61eaf25f135af7f06ba69e9e5 (patch)
treedc996d5fd548c5dc52973118561b3c8624b4a532 /gitaly.gemspec
parent1e7736fb1be618eddd60aec8e820f96b01ceb17b (diff)
Publish Ruby stubs as 'gitaly' gem
Diffstat (limited to 'gitaly.gemspec')
-rw-r--r--gitaly.gemspec21
1 files changed, 21 insertions, 0 deletions
diff --git a/gitaly.gemspec b/gitaly.gemspec
new file mode 100644
index 000000000..80095c4ce
--- /dev/null
+++ b/gitaly.gemspec
@@ -0,0 +1,21 @@
+# coding: utf-8
+prefix = 'ruby/proto'
+$LOAD_PATH.unshift(File.expand_path(File.join(prefix), __dir__))
+require 'gitaly/version'
+
+Gem::Specification.new do |spec|
+ spec.name = "gitaly"
+ spec.version = Gitaly::VERSION
+ spec.authors = ["Jacob Vosmaer"]
+ spec.email = ["jacob@gitlab.com"]
+
+ spec.summary = %q{Auto-generated gRPC client for gitaly}
+ spec.description = %q{Auto-generated gRPC client for gitaly.}
+ spec.homepage = "https://gitlab.com/gitlab-org/gitaly"
+ spec.license = "MIT"
+
+ spec.files = `git ls-files -z #{prefix}`.split("\x0").reject { |f| f.match(%r{^#{prefix}/(test|spec|features)/}) }
+ spec.require_paths = [prefix]
+
+ spec.add_dependency "grpc", "~> 1.0"
+end