honeybadger 3.0.0.beta6 → 3.0.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/CHANGELOG.md +2 -1
- data/README.md +10 -2
- data/lib/honeybadger/util/sanitizer.rb +1 -1
- data/lib/honeybadger/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '06286610434dbeb5ce9a47b876bd0026feccdae3'
|
|
4
|
+
data.tar.gz: 110088ce45cdcf2d39d3bdaca37590ef098a5cfa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7c53ddeb9b1e77c924234124ce252e067287bfb38c3a962aae4bea99c11884dcd43582ac96a08dc3964abf823f15f3c572f6a1aecca2d54445340880211ef12a
|
|
7
|
+
data.tar.gz: fb74e0dba769dbfb74e484d759f44404ebad553aa19615696fce425faacc1097789fededdb7ffec6ea118958f4f5730b0856c53ddbffcfb78867f7673d9a92ae
|
data/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,7 @@ adheres to [Semantic Versioning](http://semver.org/).
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
-
## [3.0.0] -
|
|
8
|
+
## [3.0.0] - 2017-02-06
|
|
9
9
|
### Added
|
|
10
10
|
- You may now require 'honeybadger/ruby' instead of 'honeybadger' to get the
|
|
11
11
|
agent without the integrations (no railtie, plugins or monkey patching).
|
|
@@ -69,6 +69,7 @@ adheres to [Semantic Versioning](http://semver.org/).
|
|
|
69
69
|
### Fixed
|
|
70
70
|
- Arrays are no longer compacted during sanitization (`nil` values will be sent
|
|
71
71
|
as they originally appeared).
|
|
72
|
+
- Resque plugin now reports `Resque::DirtyExit` exceptions.
|
|
72
73
|
|
|
73
74
|
## [2.7.2] - 2016-12-12
|
|
74
75
|
### Fixed
|
data/README.md
CHANGED
|
@@ -30,14 +30,22 @@ Integrating with other libraries/frameworks is simple! [See the documentation](h
|
|
|
30
30
|
|
|
31
31
|
## Supported job queues
|
|
32
32
|
|
|
33
|
-
|
|
|
33
|
+
| Library | Version | Native? |
|
|
34
34
|
| ------------- | ------------- | ------------ |
|
|
35
35
|
| Sidekiq | any | yes |
|
|
36
36
|
| Resque | any | yes |
|
|
37
37
|
| Delayed Job | any | yes |
|
|
38
38
|
| Sucker Punch | any | yes |
|
|
39
|
+
| Shoryuken | any | yes |
|
|
39
40
|
|
|
40
|
-
|
|
41
|
+
## Other integrations
|
|
42
|
+
|
|
43
|
+
| Library | Version | Native? | Description |
|
|
44
|
+
| ------------- | ------------- | ------------ | ----------- |
|
|
45
|
+
| Devise/Warden | any | yes | Exceptions are automatically associated with the current user. |
|
|
46
|
+
| Thor | any | yes | Exceptions in commands are automatically reported. |
|
|
47
|
+
|
|
48
|
+
You can integrate honeybadger into any Ruby script via the `Honeybadger.notify` method.
|
|
41
49
|
|
|
42
50
|
## Getting Started
|
|
43
51
|
|
data/lib/honeybadger/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: honeybadger
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.0
|
|
4
|
+
version: 3.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Honeybadger Industries LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-02-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Make managing application errors a more pleasant experience.
|
|
14
14
|
email:
|
|
@@ -136,9 +136,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
136
136
|
version: 2.1.0
|
|
137
137
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
138
138
|
requirements:
|
|
139
|
-
- - "
|
|
139
|
+
- - ">="
|
|
140
140
|
- !ruby/object:Gem::Version
|
|
141
|
-
version:
|
|
141
|
+
version: '0'
|
|
142
142
|
requirements: []
|
|
143
143
|
rubyforge_project:
|
|
144
144
|
rubygems_version: 2.6.8
|