grpc_opencensus_interceptor 0.0.2 → 0.0.3

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: 858e38644b3a323462339607aed2c45ae1cdb317de12d345094911a5a6a733ef
4
- data.tar.gz: d43818860944836bdc399e7a54c642a572c4da4df416a8c710bddd1d0c4b172b
3
+ metadata.gz: 5ffbb31e0f8ff83ffed96b28bbe6b8f6d8326d7fed1b30fe2f3c1263734ac0a9
4
+ data.tar.gz: 9942056c4f983f07fdddac7822291c4df9b51c875caff6683c83e94a81246d4c
5
5
  SHA512:
6
- metadata.gz: 9b73ac05b6a2b37dba65cfda255b93d01d30a050bb2c76a2c1e50ee3a44c8431909361e11b14a0f2e93894524bf60a484d1d50d4136539cb757a9ea9a39ad27c
7
- data.tar.gz: 511f290f14c2d0ad8ae92fe31a40e694b10483b96431a86315315bd4f5da40991eb6c599aa004bab78c033950d7b9ba969b9c6ed601e8aa347fde9f4c183f52d
6
+ metadata.gz: ce151c663a014585aec834a130c69948914c87e26ed0cb909534b785543376a26ceade11f2f825ad725ecb835ed7cb76f9d06df6743101c23b5f8c46428b3031
7
+ data.tar.gz: 7a706ca4885f0c618b1b985364ef3d3485987782b6196bea12e95634cdbccfa6dbdafa9615bf982c7ecc9fed99bfe5b58c700ff8f374c65f90de324f667a1bab
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- grpc_opencensus_interceptor (0.0.2)
4
+ grpc_opencensus_interceptor (0.0.3)
5
5
  grpc
6
6
  opencensus
7
7
 
@@ -10,11 +10,11 @@ GEM
10
10
  specs:
11
11
  coderay (1.1.2)
12
12
  diff-lcs (1.3)
13
- google-protobuf (3.11.4)
14
- googleapis-common-protos-types (1.0.4)
15
- google-protobuf (~> 3.0)
16
- grpc (1.27.0)
13
+ google-protobuf (3.14.0)
14
+ googleapis-common-protos-types (1.0.5)
17
15
  google-protobuf (~> 3.11)
16
+ grpc (1.32.0)
17
+ google-protobuf (~> 3.13)
18
18
  googleapis-common-protos-types (~> 1.0)
19
19
  method_source (0.9.2)
20
20
  opencensus (0.5.0)
@@ -52,4 +52,4 @@ DEPENDENCIES
52
52
  rspec (~> 3.0)
53
53
 
54
54
  BUNDLED WITH
55
- 2.0.2
55
+ 2.1.4
data/README.md CHANGED
@@ -55,7 +55,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
55
55
 
56
56
  ## Contributing
57
57
 
58
- Bug reports and pull requests are welcome on GitHub at https://github.com/south37/grpc_opencensus_interceptor. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
58
+ Bug reports and pull requests are welcome on GitHub at https://github.com/wantedly/grpc_opencensus_interceptor. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
59
59
 
60
60
  ## License
61
61
 
@@ -63,4 +63,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
63
63
 
64
64
  ## Code of Conduct
65
65
 
66
- Everyone interacting in the GrpcOpencensusInterceptor project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/south37/grpc_opencensus_interceptor/blob/master/CODE_OF_CONDUCT.md).
66
+ Everyone interacting in the GrpcOpencensusInterceptor project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/wantedly/grpc_opencensus_interceptor/blob/master/CODE_OF_CONDUCT.md).
@@ -10,11 +10,11 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = %q{An interceptor for using OpenCensus with gRPC.}
12
12
  spec.description = %q{An interceptor for using OpenCensus with gRPC.}
13
- spec.homepage = "https://github.com/south37/grpc_opencensus_interceptor"
13
+ spec.homepage = "https://github.com/wantedly/grpc_opencensus_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/south37/grpc_opencensus_interceptor"
17
+ spec.metadata["source_code_uri"] = "https://github.com/wantedly/grpc_opencensus_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.
@@ -71,7 +71,7 @@ module GrpcOpencensusInterceptor
71
71
  # @param [Method] method
72
72
  # @return [String]
73
73
  def get_name(method)
74
- "#{method.owner.service_name}/#{camelize(method.name.to_s)}"
74
+ "#{method.receiver.class.service_name}/#{camelize(method.name.to_s)}"
75
75
  end
76
76
 
77
77
  # @param [Method] method
@@ -1,3 +1,3 @@
1
1
  module GrpcOpencensusInterceptor
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grpc_opencensus_interceptor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
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: 2020-03-02 00:00:00.000000000 Z
11
+ date: 2020-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -133,13 +133,13 @@ files:
133
133
  - lib/grpc_opencensus_interceptor/server_interceptor/span_modifier.rb
134
134
  - lib/grpc_opencensus_interceptor/util.rb
135
135
  - lib/grpc_opencensus_interceptor/version.rb
136
- homepage: https://github.com/south37/grpc_opencensus_interceptor
136
+ homepage: https://github.com/wantedly/grpc_opencensus_interceptor
137
137
  licenses:
138
138
  - MIT
139
139
  metadata:
140
- homepage_uri: https://github.com/south37/grpc_opencensus_interceptor
141
- source_code_uri: https://github.com/south37/grpc_opencensus_interceptor
142
- post_install_message:
140
+ homepage_uri: https://github.com/wantedly/grpc_opencensus_interceptor
141
+ source_code_uri: https://github.com/wantedly/grpc_opencensus_interceptor
142
+ post_install_message:
143
143
  rdoc_options: []
144
144
  require_paths:
145
145
  - lib
@@ -154,8 +154,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
154
154
  - !ruby/object:Gem::Version
155
155
  version: '0'
156
156
  requirements: []
157
- rubygems_version: 3.0.6
158
- signing_key:
157
+ rubygems_version: 3.0.3
158
+ signing_key:
159
159
  specification_version: 4
160
160
  summary: An interceptor for using OpenCensus with gRPC.
161
161
  test_files: []