googleapis-common-protos 1.3.7 → 1.3.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 22f42a6a105eccdf8a6045f218ba66991d8e8228
4
- data.tar.gz: 1f51f6899b959b67bdeb9cc28f76b234b0438e9a
3
+ metadata.gz: 29ea36722894f9410328e495342d87d6310351e4
4
+ data.tar.gz: e6e5a9e3a1eceaf950b66ca594b1ae787e7ae82c
5
5
  SHA512:
6
- metadata.gz: 4425ca7b451325e6c617da04d020ebef564302765a28f7579de7a0f841421cd9e7cc278d2f48b6739b528cf561aab4ea2ef10e9f7eec60b9a8664d88091ac5ec
7
- data.tar.gz: cf6039cb6168be93f86f9366cba58982d069f354d146bb70552ae1901a301c877fa7f93f8b97c3dbc2a02a5894e15f2afb66d64be3543fc7f8f15404584248cc
6
+ metadata.gz: a82118e22204bc6de377875500689e5911c69cf2e50d77e75fe990fba5610e3172daaaca7fef104e8b39ea3232742710a7217045a506776d37fd94b83977d40b
7
+ data.tar.gz: 89c05f2512c6d23f71d68ec469413eb5936d7d92b5ad0e95659cd2ae64c24235776dae6d0bd109576e793f9fe2d0d985df277608d8acc8e15de0316a6e43a42b
@@ -0,0 +1,11 @@
1
+ Gemfile.lock
2
+ .DS_STORE
3
+ /.bundle/
4
+ /.yardoc
5
+ /_yardoc/
6
+ /coverage/
7
+ /doc/
8
+ /pkg/
9
+ /spec/reports/
10
+ /tmp/
11
+ /lib/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in api-common-protos-ruby.gemspec
6
+ gemspec
@@ -0,0 +1,15 @@
1
+ ## Installation
2
+
3
+ Add this line to your application's Gemfile:
4
+
5
+ ```ruby
6
+ gem 'googleapis-common-protos'
7
+ ```
8
+
9
+ And then execute:
10
+
11
+ $ bundle
12
+
13
+ Or install it yourself as:
14
+
15
+ $ gem install googleapis-common-protos
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2018 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ require 'bundler/gem_tasks'
18
+
19
+ desc "Compile the necessary protobuf files."
20
+ task :compile_protos do
21
+ Rake::Task[:clean_protos].invoke
22
+ FileUtils.mkdir 'lib'
23
+
24
+ command = []
25
+ command << "grpc_tools_ruby_protoc"
26
+ command << "--grpc_out=lib"
27
+ command << "-I ../googleapis"
28
+ command << "../googleapis/google/longrunning/operations.proto"
29
+ full_command = command.join " "
30
+
31
+ puts full_command
32
+ system full_command
33
+ end
34
+
35
+ desc "Remove the compiled protos."
36
+ task :clean_protos do
37
+ FileUtils.rm_rf "lib"
38
+ end
39
+
40
+ desc "Run the CI build"
41
+ task :ci do
42
+ puts "\nCompiling Protos\n"
43
+ Rake::Task[:compile_protos].invoke
44
+ end
45
+
46
+ Rake::Task[:build].enhance [:compile_protos]
47
+ Rake::Task[:clean].enhance [:clean_protos]
48
+
49
+ task default: :ci
@@ -0,0 +1,44 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2018 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ Gem::Specification.new do |spec|
18
+ spec.name = "googleapis-common-protos"
19
+ spec.version = "1.3.8"
20
+ spec.authors = ["Google Inc"]
21
+ spec.email = ["googleapis-packages@google.com"]
22
+ spec.licenses = ["Apache-2.0"]
23
+
24
+ spec.summary = "Common gRPC and protocol buffer classes used in Google APIs"
25
+ spec.homepage = "https://github.com/googleapis/googleapis"
26
+
27
+ # Specify which files should be added to the gem when it is released. The `git
28
+ # ls-files -z` loads the files in the RubyGem that have been added into git.
29
+ spec.files = Dir.chdir File.expand_path(__dir__) do
30
+ `git ls-files -z`.split("\x0").reject do |f|
31
+ f.match %r{^(test|spec|features)/}
32
+ end
33
+ end
34
+ spec.files += Dir.glob "lib/**/*_pb.rb"
35
+ spec.require_paths = ["lib"]
36
+
37
+ spec.add_dependency "googleapis-common-protos-types", "~> 1.0"
38
+ spec.add_dependency "google-protobuf", "~> 3.0"
39
+ spec.add_dependency "grpc", "~> 1.0"
40
+
41
+ spec.add_development_dependency "bundler", "~> 1.15"
42
+ spec.add_development_dependency "grpc-tools", "~> 1.18"
43
+ spec.add_development_dependency "rake", "~> 10.0"
44
+ end
metadata CHANGED
@@ -1,43 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: googleapis-common-protos
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.7
4
+ version: 1.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google Inc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-06 00:00:00.000000000 Z
11
+ date: 2019-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: google-protobuf
14
+ name: googleapis-common-protos-types
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '3.0'
19
+ version: '1.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '3.0'
26
+ version: '1.0'
27
27
  - !ruby/object:Gem::Dependency
28
- name: googleapis-common-protos-types
28
+ name: google-protobuf
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.0'
33
+ version: '3.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.0'
40
+ version: '3.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: grpc
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -58,34 +58,54 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '1.9'
61
+ version: '1.15'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '1.9'
68
+ version: '1.15'
69
+ - !ruby/object:Gem::Dependency
70
+ name: grpc-tools
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.18'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.18'
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: rake
71
85
  requirement: !ruby/object:Gem::Requirement
72
86
  requirements:
73
87
  - - "~>"
74
88
  - !ruby/object:Gem::Version
75
- version: '10.4'
89
+ version: '10.0'
76
90
  type: :development
77
91
  prerelease: false
78
92
  version_requirements: !ruby/object:Gem::Requirement
79
93
  requirements:
80
94
  - - "~>"
81
95
  - !ruby/object:Gem::Version
82
- version: '10.4'
83
- description: Common gRPC and protocol buffer classes used in Google APIs
84
- email: googleapis-packages@google.com
96
+ version: '10.0'
97
+ description:
98
+ email:
99
+ - googleapis-packages@google.com
85
100
  executables: []
86
101
  extensions: []
87
102
  extra_rdoc_files: []
88
103
  files:
104
+ - ".gitignore"
105
+ - Gemfile
106
+ - README.md
107
+ - Rakefile
108
+ - googleapis-common-protos.gemspec
89
109
  - lib/google/longrunning/operations_services_pb.rb
90
110
  homepage: https://github.com/googleapis/googleapis
91
111
  licenses:
@@ -99,7 +119,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
99
119
  requirements:
100
120
  - - ">="
101
121
  - !ruby/object:Gem::Version
102
- version: 2.0.0
122
+ version: '0'
103
123
  required_rubygems_version: !ruby/object:Gem::Requirement
104
124
  requirements:
105
125
  - - ">="
@@ -107,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
107
127
  version: '0'
108
128
  requirements: []
109
129
  rubyforge_project:
110
- rubygems_version: 2.4.8
130
+ rubygems_version: 2.6.14
111
131
  signing_key:
112
132
  specification_version: 4
113
133
  summary: Common gRPC and protocol buffer classes used in Google APIs