honeybadger 2.0.9 → 2.0.10

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: 0b9267b35e8dd5e293fb8047d86757f4d1301bcd
4
- data.tar.gz: 01b79957eb4d49740231a9c631189756bdcab2f2
3
+ metadata.gz: 8509e92e654bf9c11bcd5972de7e6c471586e63c
4
+ data.tar.gz: ff6c169f3e414c50cf63e8af81394741a27d5c03
5
5
  SHA512:
6
- metadata.gz: 58b52ed3d6b25f1ae0c9ae6cd9200c8c216ffcc1dd9b667eb8c1e56d7eb0cab1e11ac2f7ae6a526ca5308a408f08503a4df54ef277090aa31097f690391334b1
7
- data.tar.gz: 8d7715734fbf44ee8ae83699782385d837699014d8f02a56bd98cb44ad4512cd63dd4c87ee36048b2f7e57c73b0a8a0d73f9cbf50b8d231f152db43552a11f26
6
+ metadata.gz: bf7454e60705b41bff8af44e78e5fed8c87a31c0d6e5057018e959730a0953167cf467d896b34ff401ebf3c1d83b79cf57cb3903fe5e94c9347fa91003aebdd6
7
+ data.tar.gz: 2944d050fb3c7bcdf5c7b76b08ed737b0a36e317624b17e2a7ec461139bc53c3a357caae78186849f28f8f8e8e09cad24059b0f91b6bef1970db9d28d3b832ef
@@ -1,3 +1,11 @@
1
+ * Fix a bug in ping where JSON was double-quoted.
2
+
3
+ *Joshua Wood*
4
+
5
+ * Add support for honeybadger_user with Capistrano 2.
6
+
7
+ *Nathan Fixler*
8
+
1
9
  * Fixed a bug introduced in v2.0.8 which applied params filters to backtrace.
2
10
 
3
11
  *Joshua Wood*
@@ -301,8 +301,8 @@ api_key: '#{self[:api_key]}'
301
301
  end
302
302
 
303
303
  def send_ping
304
- payload = ping_payload.to_json
305
- debug { sprintf('ping payload=%s', payload.dump) }
304
+ payload = ping_payload
305
+ debug { sprintf('ping payload=%s', payload.to_json.dump) }
306
306
  response = backend.notify(:ping, payload)
307
307
  if response.success?
308
308
  debug { sprintf('ping response=%s', response.body.dump) }
@@ -1,4 +1,4 @@
1
1
  module Honeybadger
2
2
  # Public: The current String Honeybadger version.
3
- VERSION = '2.0.9'.freeze
3
+ VERSION = '2.0.10'.freeze
4
4
  end
@@ -15,7 +15,7 @@ module Honeybadger
15
15
  task :deploy, :except => { :no_release => true } do
16
16
  rails_env = fetch(:rails_env, 'production')
17
17
  honeybadger_env = fetch(:honeybadger_env, fetch(:rails_env, 'production'))
18
- local_user = ENV['USER'] || ENV['USERNAME']
18
+ local_user = fetch(:honeybadger_user, ENV['USER'] || ENV['USERNAME'])
19
19
  executable = fetch(:honeybadger, "#{fetch(:bundle_cmd, 'bundle')} exec honeybadger")
20
20
  async_notify = fetch(:honeybadger_async_notify, false)
21
21
  directory = fetch(:honeybadger_deploy_dir, configuration.current_release)
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.9
4
+ version: 2.0.10
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-03-16 00:00:00.000000000 Z
11
+ date: 2015-03-24 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Make managing application errors a more pleasant experience.
14
14
  email: