dispatch-rider 1.8.2 → 1.8.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/dispatch-rider/integrations/appsignal.rb +1 -1
- data/lib/dispatch-rider/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69577b88168f4ddb710d74d8552afce02c04d9a9
|
4
|
+
data.tar.gz: bdc983fa2c33781cd4f7d7565913a4526324b2b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd39b29442884ed7e6be32a437c6b6cabb6b3f34224124d513eef51f358bb11a91256d2500e3d5c6a0abb7982ec5a96c97ec1b36f98be3c2864936db467106af
|
7
|
+
data.tar.gz: 97385b2ac0bf8236336a7b471c333bd7b6d06a1e8acb9a91cdf863e742558f4567182aa35e0719c3d98dd3b717a04b876bed04ba429a028130f91efabebd3e59
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## [v1.8.2](https://github.com/payrollhero/dispatch-rider/tree/v1.8.2) (2016-01-19)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.8.1...v1.8.2)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- Another small fix [\#71](https://github.com/payrollhero/dispatch-rider/pull/71) ([piotrb](https://github.com/piotrb))
|
10
|
+
|
3
11
|
## [v1.8.1](https://github.com/payrollhero/dispatch-rider/tree/v1.8.1) (2016-01-19)
|
4
12
|
|
5
13
|
[Full Changelog](https://github.com/payrollhero/dispatch-rider/compare/v1.8.0...v1.8.1)
|
@@ -25,7 +25,7 @@ if defined? Appsignal
|
|
25
25
|
end
|
26
26
|
rescue Exception => exception
|
27
27
|
unless ::Appsignal.is_ignored_error?(exception)
|
28
|
-
::Appsignal::Transaction.current.
|
28
|
+
::Appsignal::Transaction.current.add_exception(exception)
|
29
29
|
end
|
30
30
|
raise exception
|
31
31
|
ensure
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dispatch-rider
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.8.
|
4
|
+
version: 1.8.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Suman Mukherjee
|
@@ -289,7 +289,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
289
289
|
version: '0'
|
290
290
|
requirements: []
|
291
291
|
rubyforge_project:
|
292
|
-
rubygems_version: 2.
|
292
|
+
rubygems_version: 2.2.2
|
293
293
|
signing_key:
|
294
294
|
specification_version: 4
|
295
295
|
summary: Messaging system that is customizable based on which queueing system we are
|