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: 7e0e979296b465bccca9fadeecbe5fd8b8987b8c
4
- data.tar.gz: e730b640fb9d0bd97232872e0c1a4d8ac274e078
3
+ metadata.gz: 55d0ecc304c91ca948ff55732373db2e63cdfc0e
4
+ data.tar.gz: c47ae500bd072c98aa5b586bba536c1440265077
5
5
  SHA512:
6
- metadata.gz: 9546fa7b52d0d2604163c9dae177ea2c7076770424170f265a4f8c8cd4b114f70dd15c1d6daafef1a244551dc28dc194bb6475f43fab07c9ba3404a00c6fca6a
7
- data.tar.gz: 47d4b6f6863b7e3f1b9ff6b95667cb0c915a125a569023e69524f49ee323f64b8b023fdc847ad0cecbd5c049b6475f3f61519a4a746f2bcf9c21a99d87d53118
6
+ metadata.gz: c1c51ea100bd33618b21fb8b1da1ec05c558dabc880abcf34556afc5e3baf59faf961a1231f8edfdb67c65f7233f0325c7d904d46dcf5b52ac934be2bbcdca83
7
+ data.tar.gz: f76817158e60c7ba887ad75a0e6ae78befdd3908e9bf3607ee1f27fff0d211f56d0ee13276af0dde82bcf32c88ab93346c5b2edca68f96a1324ff2804e6665b2
@@ -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.writable?
16
- raise ConfigError, "The configuration file #{@path} is not writable."
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)
@@ -1,4 +1,4 @@
1
1
  module Honeybadger
2
2
  # Public: The current String Honeybadger version.
3
- VERSION = '2.0.2'.freeze
3
+ VERSION = '2.0.3'.freeze
4
4
  end
@@ -76,6 +76,7 @@ end
76
76
  namespace :load do
77
77
  task :defaults do
78
78
  set :bundle_bins, fetch(:bundle_bins, []).push('honeybadger')
79
+ set :rvm_map_bins, fetch(:rvm_map_bins, []).push('honeybadger')
79
80
  end
80
81
  end
81
82
 
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.2
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-04 00:00:00.000000000 Z
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: