gitaly 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cd3e179fa013b9bf19b1f0cc0ee2b0f38b8588ff
4
- data.tar.gz: 6a98bece522085c773ce62f34b1c2b5c91d50e56
3
+ metadata.gz: 14b6540f4cf1b045ff39e784fab9875b27d3f970
4
+ data.tar.gz: 413a1302b14e1c56cb3a2c4cc7ba936c9834bc7b
5
5
  SHA512:
6
- metadata.gz: dac5d36e90e064ed8f904b1fb4d10e69c25b0fb9f13263a122d989e15f06b1f8b12e1a1a46d14e998ac86f49fa866bafd9a00eddc06354448b6647910dfb3780
7
- data.tar.gz: 09a60e9422efb886a45d4e971127ce77e4ad402ae711a9e1f13d31b67512c42aea8168f34b24105adb2f5d0762d2ae6b7f733a707d0f53f281a4b8726285aa2a
6
+ metadata.gz: 93fa06ddfb46566944c8f9dc0905fe5a343643d4d37a54783d28d4cf536bd6770b5dc07428933fd79fc7cabf5d6776e6f97fab39ed588f53fc43bc4db1ab5b07
7
+ data.tar.gz: 125a2fcbd8711a807007f7d72fb3e72646542c812280c613cb99a4a732afc0fc6017eb67fc8f981cb94993db9d2b4b0c5dc9e00f4f421865f3a689102ecac074
File without changes
@@ -1,4 +1,4 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in gitaly.gemspec
4
- gemspec
4
+ gemspec path: '../..'
File without changes
@@ -1,4 +1,4 @@
1
- # Gitaly
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,6 +5,7 @@ require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
7
  add_message "gitaly.InfoRefsRequest" do
8
+ optional :repo_path, :string, 1
8
9
  end
9
10
  add_message "gitaly.InfoRefsResponse" do
10
11
  optional :data, :bytes, 1
@@ -5,7 +5,7 @@ require 'grpc'
5
5
  require 'gitaly_pb'
6
6
 
7
7
  module Gitaly
8
- module SmartHttp
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.SmartHttp'
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)
@@ -0,0 +1,3 @@
1
+ module Gitaly
2
+ VERSION = "0.0.2"
3
+ end
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.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacob Vosmaer
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-23 00:00:00.000000000 Z
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
- - ".gitignore"
77
- - Gemfile
78
- - LICENSE.txt
79
- - README.md
80
- - Rakefile
81
- - bin/console
82
- - bin/setup
83
- - gitaly.gemspec
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
@@ -1,2 +0,0 @@
1
- require "bundler/gem_tasks"
2
- task :default => :spec
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
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
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
@@ -1,4 +0,0 @@
1
- module Gitaly
2
- # TODO Proper versioning
3
- VERSION = "0.0.1"
4
- end
data/lib/version.rb DELETED
File without changes