gitlab-pages-proto 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7e849fb69f7339a8073a9d3e23e371adbd8521d2
4
+ data.tar.gz: c92aecbc159a71b0572496535354bc7e5044816f
5
+ SHA512:
6
+ metadata.gz: 000bab00c0cba176ec3d84acff35c82b4226fc0ad35183f1b60949f06d6415e7e8914619e9ef35ad2c6b96419b816e78c1380e458407215bc35d17d6ad2d684e
7
+ data.tar.gz: d5b2454abe06a1f3103ad4761cfd3b741cdee860b2971dc2fa938ab067b84711db2ea237ade43ea280d533fad50a41d66dba85b480805f8f7a933fe37c6c67d2
data/ruby/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ /*.gem
data/ruby/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 GitLab Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/ruby/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # gitlab-pages-proto Ruby gem
2
+
3
+ This is an auto-generated Ruby gem that contains gRPC client and
4
+ server code for the gitlab-pages admin service.
@@ -0,0 +1,7 @@
1
+ # This file is generated by generate-from-proto. Do not edit.
2
+ $:.unshift(File.expand_path('../gitlab_pages', __FILE__))
3
+
4
+ require 'gitlab_pages/version'
5
+
6
+ require 'gitlab_pages/deploy_services_pb'
7
+
@@ -0,0 +1,18 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: deploy.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_message "gitlab_pages.v1.DeleteSiteRequest" do
8
+ end
9
+ add_message "gitlab_pages.v1.DeleteSiteResponse" do
10
+ end
11
+ end
12
+
13
+ module GitlabPages
14
+ module V1
15
+ DeleteSiteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitlab_pages.v1.DeleteSiteRequest").msgclass
16
+ DeleteSiteResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitlab_pages.v1.DeleteSiteResponse").msgclass
17
+ end
18
+ end
@@ -0,0 +1,24 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: deploy.proto for package 'gitlab_pages.v1'
3
+
4
+ require 'grpc'
5
+ require 'deploy_pb'
6
+
7
+ module GitlabPages
8
+ module V1
9
+ module DeployService
10
+ class Service
11
+
12
+ include GRPC::GenericService
13
+
14
+ self.marshal_class_method = :encode
15
+ self.unmarshal_class_method = :decode
16
+ self.service_name = 'gitlab_pages.v1.DeployService'
17
+
18
+ rpc :DeleteSite, DeleteSiteRequest, DeleteSiteResponse
19
+ end
20
+
21
+ Stub = Service.rpc_stub_class
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,3 @@
1
+ module GitlabPages
2
+ VERSION = '0.0.1'.freeze
3
+ end
metadata ADDED
@@ -0,0 +1,79 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gitlab-pages-proto
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jacob Vosmaer
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-04-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: google-protobuf
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: grpc
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.10'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.10'
41
+ description: Auto-generated gRPC client for gitlab-pages.
42
+ email:
43
+ - jacob@gitlab.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ruby/.gitignore
49
+ - ruby/LICENSE.txt
50
+ - ruby/README.md
51
+ - ruby/lib/gitlab-pages-proto.rb
52
+ - ruby/lib/gitlab_pages/deploy_pb.rb
53
+ - ruby/lib/gitlab_pages/deploy_services_pb.rb
54
+ - ruby/lib/gitlab_pages/version.rb
55
+ homepage: https://gitlab.com/gitlab-org/gitlab-pages-proto
56
+ licenses:
57
+ - MIT
58
+ metadata: {}
59
+ post_install_message:
60
+ rdoc_options: []
61
+ require_paths:
62
+ - ruby/lib
63
+ required_ruby_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ required_rubygems_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ requirements: []
74
+ rubyforge_project:
75
+ rubygems_version: 2.5.2.2
76
+ signing_key:
77
+ specification_version: 4
78
+ summary: Auto-generated gRPC client for gitlab-pages
79
+ test_files: []