gitaly 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/{.gitignore → protos/ruby/.gitignore} +0 -0
- data/{Gemfile → protos/ruby/Gemfile} +1 -1
- data/{LICENSE.txt → protos/ruby/LICENSE.txt} +0 -0
- data/{README.md → protos/ruby/README.md} +1 -1
- data/{lib → protos/ruby/lib}/gitaly.rb +0 -0
- data/{lib → protos/ruby/lib}/gitaly/gitaly_pb.rb +1 -0
- data/{lib → protos/ruby/lib}/gitaly/gitaly_services_pb.rb +2 -2
- data/protos/ruby/lib/gitaly/version.rb +3 -0
- metadata +11 -16
- data/Rakefile +0 -2
- data/bin/console +0 -14
- data/bin/setup +0 -8
- data/gitaly.gemspec +0 -27
- data/lib/gitaly/version.rb +0 -4
- data/lib/version.rb +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14b6540f4cf1b045ff39e784fab9875b27d3f970
|
4
|
+
data.tar.gz: 413a1302b14e1c56cb3a2c4cc7ba936c9834bc7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93fa06ddfb46566944c8f9dc0905fe5a343643d4d37a54783d28d4cf536bd6770b5dc07428933fd79fc7cabf5d6776e6f97fab39ed588f53fc43bc4db1ab5b07
|
7
|
+
data.tar.gz: 125a2fcbd8711a807007f7d72fb3e72646542c812280c613cb99a4a732afc0fc6017eb67fc8f981cb94993db9d2b4b0c5dc9e00f4f421865f3a689102ecac074
|
File without changes
|
File without changes
|
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# TODO: replace auto-generated README
|
2
2
|
|
3
3
|
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/gitaly`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
4
|
|
File without changes
|
@@ -5,7 +5,7 @@ require 'grpc'
|
|
5
5
|
require 'gitaly_pb'
|
6
6
|
|
7
7
|
module Gitaly
|
8
|
-
module
|
8
|
+
module SmartHTTP
|
9
9
|
# The Git 'smart HTTP' protocol
|
10
10
|
class Service
|
11
11
|
|
@@ -13,7 +13,7 @@ module Gitaly
|
|
13
13
|
|
14
14
|
self.marshal_class_method = :encode
|
15
15
|
self.unmarshal_class_method = :decode
|
16
|
-
self.service_name = 'gitaly.
|
16
|
+
self.service_name = 'gitaly.SmartHTTP'
|
17
17
|
|
18
18
|
# The response body for GET /info/refs?service=git-upload-pack
|
19
19
|
rpc :InfoRefsUploadPack, InfoRefsRequest, stream(InfoRefsResponse)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitaly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Vosmaer
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-01-
|
11
|
+
date: 2017-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-protobuf
|
@@ -73,19 +73,14 @@ executables: []
|
|
73
73
|
extensions: []
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
|
-
-
|
77
|
-
- Gemfile
|
78
|
-
- LICENSE.txt
|
79
|
-
- README.md
|
80
|
-
-
|
81
|
-
-
|
82
|
-
-
|
83
|
-
- gitaly.
|
84
|
-
- lib/gitaly.rb
|
85
|
-
- lib/gitaly/gitaly_pb.rb
|
86
|
-
- lib/gitaly/gitaly_services_pb.rb
|
87
|
-
- lib/gitaly/version.rb
|
88
|
-
- lib/version.rb
|
76
|
+
- protos/ruby/.gitignore
|
77
|
+
- protos/ruby/Gemfile
|
78
|
+
- protos/ruby/LICENSE.txt
|
79
|
+
- protos/ruby/README.md
|
80
|
+
- protos/ruby/lib/gitaly.rb
|
81
|
+
- protos/ruby/lib/gitaly/gitaly_pb.rb
|
82
|
+
- protos/ruby/lib/gitaly/gitaly_services_pb.rb
|
83
|
+
- protos/ruby/lib/gitaly/version.rb
|
89
84
|
homepage: https://gitlab.com/gitlab-org/gitaly
|
90
85
|
licenses:
|
91
86
|
- MIT
|
data/Rakefile
DELETED
data/bin/console
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "bundler/setup"
|
4
|
-
require "gitaly"
|
5
|
-
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
8
|
-
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
-
# require "pry"
|
11
|
-
# Pry.start
|
12
|
-
|
13
|
-
require "irb"
|
14
|
-
IRB.start
|
data/bin/setup
DELETED
data/gitaly.gemspec
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require 'gitaly/version'
|
5
|
-
|
6
|
-
Gem::Specification.new do |spec|
|
7
|
-
spec.name = "gitaly"
|
8
|
-
spec.version = Gitaly::VERSION
|
9
|
-
spec.authors = ["Jacob Vosmaer"]
|
10
|
-
spec.email = ["jacob@gitlab.com"]
|
11
|
-
|
12
|
-
spec.summary = %q{Auto-generated gRPC client for gitaly}
|
13
|
-
spec.description = %q{Auto-generated gRPC client for gitaly.}
|
14
|
-
spec.homepage = "https://gitlab.com/gitlab-org/gitaly"
|
15
|
-
spec.license = "MIT"
|
16
|
-
|
17
|
-
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
|
-
spec.bindir = "exe"
|
19
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
|
-
spec.require_paths = ["lib"]
|
21
|
-
|
22
|
-
spec.add_dependency "google-protobuf", "~> 3.1"
|
23
|
-
spec.add_dependency "grpc", "~> 1.0"
|
24
|
-
|
25
|
-
spec.add_development_dependency "bundler", "~> 1.12"
|
26
|
-
spec.add_development_dependency "rake", "~> 10.0"
|
27
|
-
end
|
data/lib/gitaly/version.rb
DELETED
data/lib/version.rb
DELETED
File without changes
|