sentry-gruf 1.0.0 → 1.0.1

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: c6b92dcb88ee23c7a5ac67f55bc00b27116558e4135bc7b5958179756702f2f5
4
- data.tar.gz: f3c6a5b296ec64663e3bff39ff6959a72562ef9cd9598d5052e6791fae7fa3dc
3
+ metadata.gz: 215a50c0ee9e9e2b840da772e4283680202cbebb885678d7f8dafcc0fda0da5a
4
+ data.tar.gz: 5ddb3f7f8909c1107fb40c7a4c6599edbeabfc03a09e936aeea5bcc03c3f4a0a
5
5
  SHA512:
6
- metadata.gz: d0532e245aaf46a75e95407713625942288b3a9199883b039b7ba12a50e80f0e29c1ded8a6bbdf0bde4f7de764fcde9ea974627bb53fa4d4eff7fee711219ee9
7
- data.tar.gz: 45358ef5814848e11490f2801c362786e002364c182f60353bebcf26cd898fbcec843125d0643c384af61a63414f3af72b453853a21b2961c80aaef70cb40c9f
6
+ metadata.gz: f2443f7adc8b6834225b05659674772b7d645ae7101a3b0347c5a528d53cef4ca1b189be03dfb9717c0ee6453b79651e7b24bde4d91d6facc3ee26e66b947594
7
+ data.tar.gz: 8bef74f5fb71a8c33099de555b1f4ecd9a262e2b221bb7aa5d32aa7eb37403b12455859fd7ed325e539ab25dfda68b37f00ef5971e6382492046ca9773213c8e
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sentry-gruf (1.0.0)
4
+ sentry-gruf (1.0.1)
5
5
  gruf (~> 2.10.0)
6
- sentry-ruby-core (~> 4.8.1)
6
+ sentry-ruby-core (~> 4.8)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Sentry-Gruf &middot; <a target="_blank" href="https://github.com/Cado-Labs"><img src="https://github.com/Cado-Labs/cado-labs-logos/raw/main/cado_labs_badge.svg" alt="Supported by Cado Labs" style="max-width: 100%; height: 20px"></a>
1
+ # Sentry-Gruf &middot; <a target="_blank" href="https://github.com/Cado-Labs"><img src="https://github.com/Cado-Labs/cado-labs-logos/raw/main/cado_labs_badge.svg" alt="Supported by Cado Labs" style="max-width: 100%; height: 20px"></a> &middot; [![Gem Version](https://badge.fury.io/rb/sentry-gruf.svg)](https://badge.fury.io/rb/sentry-gruf) &middot; [![Coverage Status](https://coveralls.io/repos/github/Cado-Labs/sentry-gruf/badge.svg?branch=master)](https://coveralls.io/github/Cado-Labs/sentry-gruf?branch=master)
2
2
 
3
3
  Gruf both client and server interceptors, which report bugs to the Sentry.
4
4
 
@@ -13,6 +13,6 @@ module Sentry
13
13
  # * c is for incremental version, it is updated in other cases
14
14
  # According to this, it is enough to specify '~> a.b'
15
15
  # if private API was not used and to specify '~> a.b.c' if it was
16
- VERSION = "1.0.0"
16
+ VERSION = "1.0.1"
17
17
  end
18
18
  end
data/lib/sentry/gruf.rb CHANGED
@@ -5,6 +5,8 @@ require "gruf"
5
5
  require "sentry-ruby"
6
6
  require "sentry/integrable"
7
7
 
8
+ require_relative "gruf/version"
9
+
8
10
  # Namespace, used by the `sentry-ruby-core` gem.
9
11
  # @see https://rubydoc.info/gems/sentry-ruby-core Sentry documentation
10
12
  module Sentry
@@ -16,6 +18,5 @@ module Sentry
16
18
  end
17
19
  end
18
20
 
19
- require_relative "gruf/version"
20
21
  require_relative "gruf/server_interceptor"
21
22
  require_relative "gruf/client_interceptor"
data/sentry_gruf.gemspec CHANGED
@@ -10,12 +10,12 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = "Gruf both client and server interceptors, which report bugs to the Sentry."
12
12
  spec.description = "Gruf both client and server interceptors, which report bugs to the Sentry."
13
- spec.homepage = "https://github.com/orgs/Cado-Labs"
13
+ spec.homepage = "https://github.com/Cado-Labs/sentry-gruf"
14
14
  spec.license = "MIT"
15
15
  spec.required_ruby_version = ">= 2.6.0"
16
16
 
17
17
  spec.metadata["homepage_uri"] = spec.homepage
18
- spec.metadata["source_code_uri"] = "https://github.com/orgs/Cado-Labs"
18
+ spec.metadata["source_code_uri"] = "https://github.com/Cado-Labs/sentry-gruf"
19
19
 
20
20
  # Specify which files should be added to the gem when it is released.
21
21
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -30,5 +30,5 @@ Gem::Specification.new do |spec|
30
30
  spec.require_paths = ["lib"]
31
31
 
32
32
  spec.add_dependency "gruf", "~> 2.10.0"
33
- spec.add_dependency "sentry-ruby-core", "~> 4.8.1"
33
+ spec.add_dependency "sentry-ruby-core", "~> 4.8"
34
34
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sentry-gruf
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - JustAnotherDude
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-23 00:00:00.000000000 Z
11
+ date: 2021-12-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gruf
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 4.8.1
33
+ version: '4.8'
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: 4.8.1
40
+ version: '4.8'
41
41
  description: Gruf both client and server interceptors, which report bugs to the Sentry.
42
42
  email:
43
43
  - vanyaz158@gmail.com
@@ -61,12 +61,12 @@ files:
61
61
  - lib/sentry/gruf/version.rb
62
62
  - lib/sentry_gruf.rb
63
63
  - sentry_gruf.gemspec
64
- homepage: https://github.com/orgs/Cado-Labs
64
+ homepage: https://github.com/Cado-Labs/sentry-gruf
65
65
  licenses:
66
66
  - MIT
67
67
  metadata:
68
- homepage_uri: https://github.com/orgs/Cado-Labs
69
- source_code_uri: https://github.com/orgs/Cado-Labs
68
+ homepage_uri: https://github.com/Cado-Labs/sentry-gruf
69
+ source_code_uri: https://github.com/Cado-Labs/sentry-gruf
70
70
  post_install_message:
71
71
  rdoc_options: []
72
72
  require_paths: