grpc_access_logging_interceptor 0.0.5 → 0.0.6
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b068cdd157d75670c222a7862bf43d8be608fa649fc14d11eccabed87de4885
|
4
|
+
data.tar.gz: 76b41f44703bb4d117d6841f27eaf8af8033738272f61534508981f8c9877a0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c09c0957ad5c689efc09548626d012ab043797dc8fc9632fc04fb162d32c525c48baf785134578e179ab074c901553a7a7ce8895ed1e4ac0fc6f5da204e62288
|
7
|
+
data.tar.gz: c6fa6650b8e10670d3b8ca9bf55cf354c7b933c6881b1907c3d71ebcd8adb14dadf5ca3023f5c968290e7e97f084aca55b1aa9861bfcc0c99394dde0b144745d
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
grpc_access_logging_interceptor (0.0.
|
4
|
+
grpc_access_logging_interceptor (0.0.6)
|
5
5
|
gmsc
|
6
6
|
grpc
|
7
7
|
|
@@ -12,10 +12,10 @@ GEM
|
|
12
12
|
diff-lcs (1.3)
|
13
13
|
gmsc (0.0.1)
|
14
14
|
google-protobuf (3.11.1)
|
15
|
-
googleapis-common-protos-types (1.0.
|
16
|
-
google-protobuf (~> 3.
|
17
|
-
grpc (1.
|
18
|
-
google-protobuf (~> 3.
|
15
|
+
googleapis-common-protos-types (1.0.5)
|
16
|
+
google-protobuf (~> 3.11)
|
17
|
+
grpc (1.28.0)
|
18
|
+
google-protobuf (~> 3.11)
|
19
19
|
googleapis-common-protos-types (~> 1.0)
|
20
20
|
method_source (0.9.2)
|
21
21
|
pry (0.12.2)
|
@@ -24,7 +24,7 @@ GEM
|
|
24
24
|
pry-doc (1.0.0)
|
25
25
|
pry (~> 0.11)
|
26
26
|
yard (~> 0.9.11)
|
27
|
-
rake (
|
27
|
+
rake (13.0.1)
|
28
28
|
rspec (3.9.0)
|
29
29
|
rspec-core (~> 3.9.0)
|
30
30
|
rspec-expectations (~> 3.9.0)
|
@@ -50,9 +50,9 @@ DEPENDENCIES
|
|
50
50
|
grpc_access_logging_interceptor!
|
51
51
|
pry
|
52
52
|
pry-doc
|
53
|
-
rake (~>
|
53
|
+
rake (~> 13.0)
|
54
54
|
rspec
|
55
55
|
timecop
|
56
56
|
|
57
57
|
BUNDLED WITH
|
58
|
-
2.
|
58
|
+
2.1.4
|
data/README.md
CHANGED
@@ -74,7 +74,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
74
74
|
|
75
75
|
## Contributing
|
76
76
|
|
77
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
77
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/wantedly/grpc_access_logging_interceptor.
|
78
78
|
|
79
79
|
## License
|
80
80
|
|
@@ -10,11 +10,11 @@ Gem::Specification.new do |spec|
|
|
10
10
|
|
11
11
|
spec.summary = %q{An interceptor for access logging with gRPC.}
|
12
12
|
spec.description = %q{An interceptor for access logging with gRPC.}
|
13
|
-
spec.homepage = "https://github.com/
|
13
|
+
spec.homepage = "https://github.com/wantedly/grpc_access_logging_interceptor"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.metadata["homepage_uri"] = spec.homepage
|
17
|
-
spec.metadata["source_code_uri"] = "https://github.com/
|
17
|
+
spec.metadata["source_code_uri"] = "https://github.com/wantedly/grpc_access_logging_interceptor"
|
18
18
|
|
19
19
|
# Specify which files should be added to the gem when it is released.
|
20
20
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
|
|
26
26
|
spec.require_paths = ["lib"]
|
27
27
|
|
28
28
|
spec.add_development_dependency "bundler", "~> 2.0"
|
29
|
-
spec.add_development_dependency "rake", "~>
|
29
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
30
30
|
spec.add_development_dependency "rspec"
|
31
31
|
spec.add_development_dependency "pry"
|
32
32
|
spec.add_development_dependency "pry-doc"
|
@@ -70,7 +70,7 @@ module GrpcAccessLoggingInterceptor
|
|
70
70
|
# We use path, which is represented as "/" Service-Name "/" {method name}
|
71
71
|
# e.g. /google.pubsub.v2.PublisherService/CreateTopic.
|
72
72
|
# cf. https://github.com/grpc/grpc/blob/v1.24.0/doc/PROTOCOL-HTTP2.md
|
73
|
-
"/#{method.
|
73
|
+
"/#{method.receiver.class.service_name}/#{camelize(method.name.to_s)}"
|
74
74
|
end
|
75
75
|
|
76
76
|
# @param [String] term
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grpc_access_logging_interceptor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nao Minami
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-12-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '13.0'
|
34
34
|
type: :development
|
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: '
|
40
|
+
version: '13.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rspec
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -158,13 +158,13 @@ files:
|
|
158
158
|
- lib/grpc_access_logging_interceptor/default_logger.rb
|
159
159
|
- lib/grpc_access_logging_interceptor/server_interceptor.rb
|
160
160
|
- lib/grpc_access_logging_interceptor/version.rb
|
161
|
-
homepage: https://github.com/
|
161
|
+
homepage: https://github.com/wantedly/grpc_access_logging_interceptor
|
162
162
|
licenses:
|
163
163
|
- MIT
|
164
164
|
metadata:
|
165
|
-
homepage_uri: https://github.com/
|
166
|
-
source_code_uri: https://github.com/
|
167
|
-
post_install_message:
|
165
|
+
homepage_uri: https://github.com/wantedly/grpc_access_logging_interceptor
|
166
|
+
source_code_uri: https://github.com/wantedly/grpc_access_logging_interceptor
|
167
|
+
post_install_message:
|
168
168
|
rdoc_options: []
|
169
169
|
require_paths:
|
170
170
|
- lib
|
@@ -179,8 +179,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
179
179
|
- !ruby/object:Gem::Version
|
180
180
|
version: '0'
|
181
181
|
requirements: []
|
182
|
-
rubygems_version: 3.0.
|
183
|
-
signing_key:
|
182
|
+
rubygems_version: 3.0.3
|
183
|
+
signing_key:
|
184
184
|
specification_version: 4
|
185
185
|
summary: An interceptor for access logging with gRPC.
|
186
186
|
test_files: []
|