honeybadger 2.0.2 → 2.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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 55d0ecc304c91ca948ff55732373db2e63cdfc0e
|
|
4
|
+
data.tar.gz: c47ae500bd072c98aa5b586bba536c1440265077
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c1c51ea100bd33618b21fb8b1da1ec05c558dabc880abcf34556afc5e3baf59faf961a1231f8edfdb67c65f7233f0325c7d904d46dcf5b52ac934be2bbcdca83
|
|
7
|
+
data.tar.gz: f76817158e60c7ba887ad75a0e6ae78befdd3908e9bf3607ee1f27fff0d211f56d0ee13276af0dde82bcf32c88ab93346c5b2edca68f96a1324ff2804e6665b2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
* Support for capistrano-rvm gem in Capistrano task.
|
|
2
|
+
|
|
3
|
+
*Kyle Rippey*
|
|
4
|
+
|
|
5
|
+
* Don't require honeybadger.yml to be writable when reading.
|
|
6
|
+
|
|
7
|
+
*Joshua Wood*
|
|
8
|
+
|
|
1
9
|
* Detect ActionDispatch::TestProcess being included globally, fix issue locally,
|
|
2
10
|
warn the user.
|
|
3
11
|
|
|
@@ -12,8 +12,8 @@ module Honeybadger
|
|
|
12
12
|
raise ConfigError, "The configuration file #{@path} was not found."
|
|
13
13
|
elsif !@path.file?
|
|
14
14
|
raise ConfigError, "The configuration file #{@path} is not a file."
|
|
15
|
-
elsif !@path.
|
|
16
|
-
raise ConfigError, "The configuration file #{@path} is not
|
|
15
|
+
elsif !@path.readable?
|
|
16
|
+
raise ConfigError, "The configuration file #{@path} is not readable."
|
|
17
17
|
else
|
|
18
18
|
yaml = YAML.load(ERB.new(@path.read).result)
|
|
19
19
|
yaml.merge!(yaml[env]) if yaml[env].kind_of?(Hash)
|
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: 2.0.
|
|
4
|
+
version: 2.0.3
|
|
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: 2015-02-
|
|
11
|
+
date: 2015-02-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Make managing application errors a more pleasant experience.
|
|
14
14
|
email:
|