uniform_notifier 1.17.0 → 1.18.0
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 +4 -4
- data/.github/workflows/ci.yml +0 -1
- data/CHANGELOG.md +5 -0
- data/lib/uniform_notifier/honeybadger.rb +1 -1
- data/lib/uniform_notifier/version.rb +1 -1
- data/spec/uniform_notifier/honeybadger_spec.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 13425e561720688fc38379efb2984fd1d78074ffc4cf0d3b63ed3871c6af3a33
|
4
|
+
data.tar.gz: 0c32e472aff6ecdd79637de33eab3c11b2610a30722b818faf4261015a5123bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bcb11a6a339a01a05d99d443352f9fc8271718b8e2941e082bfafdb23f97b570ff5e9bcecc14e6464e6740c5ccd5b457880ddd26d144ac322c812949eef647d1
|
7
|
+
data.tar.gz: 5b020147e831c1c3423de9d06353e577cb6bdb3dc7a063059ff82d4e2ccd30058ef5440fab6a8637a303a400e22e4fb7c95bd57a904dd315155e7c0e94155cd5
|
data/.github/workflows/ci.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -12,14 +12,14 @@ RSpec.describe UniformNotifier::HoneybadgerNotifier do
|
|
12
12
|
end
|
13
13
|
|
14
14
|
it 'should notify honeybadger' do
|
15
|
-
expect(Honeybadger).to receive(:notify).with(UniformNotifier::Exception.new('notify honeybadger')
|
15
|
+
expect(Honeybadger).to receive(:notify).with(UniformNotifier::Exception.new('notify honeybadger'))
|
16
16
|
|
17
17
|
UniformNotifier.honeybadger = true
|
18
18
|
UniformNotifier::HoneybadgerNotifier.out_of_channel_notify(title: 'notify honeybadger')
|
19
19
|
end
|
20
20
|
|
21
21
|
it 'should notify honeybadger' do
|
22
|
-
expect(Honeybadger).to receive(:notify).with(UniformNotifier::Exception.new('notify honeybadger'),
|
22
|
+
expect(Honeybadger).to receive(:notify).with(UniformNotifier::Exception.new('notify honeybadger'), foo: :bar)
|
23
23
|
|
24
24
|
UniformNotifier.honeybadger = { foo: :bar }
|
25
25
|
UniformNotifier::HoneybadgerNotifier.out_of_channel_notify('notify honeybadger')
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: uniform_notifier
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.18.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Richard Huang
|
@@ -124,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
124
124
|
- !ruby/object:Gem::Version
|
125
125
|
version: '0'
|
126
126
|
requirements: []
|
127
|
-
rubygems_version: 3.6.
|
127
|
+
rubygems_version: 3.6.9
|
128
128
|
specification_version: 4
|
129
129
|
summary: uniform notifier for rails logger, customized logger, javascript alert, javascript
|
130
130
|
console and xmpp
|