honeybadger 1.13.2 → 1.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Appraisals +60 -45
- data/CHANGELOG.md +30 -1
- data/Gemfile.lock +1 -1
- data/MIT-LICENSE +2 -1
- data/Rakefile +8 -4
- data/features/standalone.feature +73 -0
- data/features/step_definitions/rack_steps.rb +1 -2
- data/features/step_definitions/standalone_steps.rb +12 -0
- data/features/step_definitions/thor_steps.rb +4 -0
- data/features/support/env.rb +2 -0
- data/features/support/test.thor +22 -0
- data/features/thor.feature +5 -0
- data/gemfiles/binding_of_caller.gemfile +8 -0
- data/gemfiles/rails.gemfile +11 -0
- data/gemfiles/rake.gemfile +1 -1
- data/gemfiles/standalone.gemfile +7 -0
- data/gemfiles/thor.gemfile +8 -0
- data/honeybadger.gemspec +27 -11
- data/lib/honeybadger.rb +15 -10
- data/lib/honeybadger/configuration.rb +9 -4
- data/lib/honeybadger/dependency.rb +65 -0
- data/lib/honeybadger/exception_extensions.rb +35 -0
- data/lib/honeybadger/integrations.rb +5 -0
- data/lib/honeybadger/integrations/delayed_job.rb +20 -0
- data/lib/honeybadger/integrations/delayed_job/plugin.rb +31 -0
- data/lib/honeybadger/integrations/sidekiq.rb +17 -9
- data/lib/honeybadger/integrations/thor.rb +29 -0
- data/lib/honeybadger/notice.rb +47 -99
- data/lib/honeybadger/payload.rb +101 -0
- data/lib/honeybadger/rack.rb +8 -54
- data/lib/honeybadger/rack/error_notifier.rb +60 -0
- data/lib/honeybadger/rack/user_feedback.rb +74 -0
- data/lib/honeybadger/rack/user_informer.rb +28 -0
- data/lib/honeybadger/rails.rb +5 -4
- data/lib/honeybadger/railtie.rb +4 -3
- data/lib/honeybadger/user_feedback.rb +3 -67
- data/lib/honeybadger/user_informer.rb +3 -21
- data/spec/honeybadger/configuration_spec.rb +5 -1
- data/spec/honeybadger/dependency_spec.rb +134 -0
- data/spec/honeybadger/exception_extensions_spec.rb +40 -0
- data/spec/honeybadger/integrations/delayed_job_spec.rb +48 -0
- data/spec/honeybadger/integrations/sidekiq_spec.rb +60 -0
- data/spec/honeybadger/integrations/thor_spec.rb +29 -0
- data/spec/honeybadger/notice_spec.rb +137 -127
- data/spec/honeybadger/payload_spec.rb +162 -0
- data/spec/honeybadger/rack_spec.rb +6 -6
- data/spec/honeybadger/rails/action_controller_spec.rb +2 -0
- data/spec/honeybadger/rails_spec.rb +4 -2
- data/spec/honeybadger/user_feedback_spec.rb +2 -2
- data/spec/honeybadger/user_informer_spec.rb +3 -3
- metadata +49 -66
- data/gemfiles/rack.gemfile.lock +0 -125
- data/gemfiles/rails2.3.gemfile.lock +0 -141
- data/gemfiles/rails3.0.gemfile.lock +0 -193
- data/gemfiles/rails3.1.gemfile.lock +0 -203
- data/gemfiles/rails3.2.gemfile.lock +0 -201
- data/gemfiles/rails4.0.gemfile.lock +0 -197
- data/gemfiles/rails4.1.gemfile.lock +0 -202
- data/gemfiles/rake.gemfile.lock +0 -124
- data/gemfiles/sinatra.gemfile.lock +0 -124
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 75f654d44aa6fb5226d1a12be042c7265bd3d26b
|
4
|
+
data.tar.gz: 8bdea660c9780b0bab2369852d40e4f2ad50238f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b6d6e31805c4ced6597e3f37fac9525163709fc4dbf1c247a8723940261b0154160dbe9e0afcda23e97cca07e657bea76ac1635e0a61a06b3b6e69f3593298b2
|
7
|
+
data.tar.gz: ebd6fdc8f7ee8245f859ee288751c8289a34aa40cbcbd9b5e286cf7d909748788a5970235d5f6b7db72b6e48467037d5af98390e4ddc031e41edd03461a8045b
|
data/Appraisals
CHANGED
@@ -1,67 +1,82 @@
|
|
1
|
-
appraise '
|
2
|
-
gem 'rails', '~> 2.3.18'
|
3
|
-
gem 'rake', '0.9.5'
|
4
|
-
gem 'honeybadger', :path => '../'
|
5
|
-
gem 'capistrano', '~> 2.0'
|
6
|
-
end
|
7
|
-
|
8
|
-
appraise 'rails3.0' do
|
9
|
-
gem 'rails', '~> 3.0.17'
|
1
|
+
appraise 'standalone' do
|
10
2
|
gem 'honeybadger', :path => '../'
|
11
|
-
gem 'better_errors', :require => false
|
12
|
-
gem 'rack-mini-profiler', '~>0.1.31 ', :require => false
|
13
|
-
gem 'capistrano', '~> 2.0'
|
14
3
|
end
|
15
4
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
gem 'capistrano', '~> 2.0'
|
5
|
+
if RUBY_VERSION > '1.9' && RUBY_PLATFORM !~ /java/
|
6
|
+
appraise 'binding_of_caller' do
|
7
|
+
gem 'binding_of_caller'
|
8
|
+
gem 'honeybadger', :path => '../'
|
9
|
+
end
|
22
10
|
end
|
23
11
|
|
24
|
-
appraise '
|
25
|
-
gem '
|
12
|
+
appraise 'rake' do
|
13
|
+
gem 'rake'
|
26
14
|
gem 'honeybadger', :path => '../'
|
27
|
-
gem 'better_errors', :require => false
|
28
|
-
gem 'rack-mini-profiler', :require => false
|
29
|
-
gem 'capistrano', '~> 2.0'
|
30
15
|
end
|
31
16
|
|
32
|
-
appraise '
|
33
|
-
gem '
|
17
|
+
appraise 'thor' do
|
18
|
+
gem 'thor'
|
34
19
|
gem 'honeybadger', :path => '../'
|
35
|
-
gem 'better_errors', :require => false
|
36
|
-
gem 'rack-mini-profiler', :require => false
|
37
|
-
gem 'capistrano', '~> 2.0'
|
38
20
|
end
|
39
21
|
|
40
|
-
appraise '
|
41
|
-
gem '
|
22
|
+
appraise 'rack' do
|
23
|
+
gem 'rack'
|
42
24
|
gem 'honeybadger', :path => '../'
|
43
|
-
gem 'capistrano', '~> 3.0'
|
44
|
-
gem 'better_errors', :require => false
|
45
|
-
gem 'rack-mini-profiler', :require => false
|
46
25
|
end
|
47
26
|
|
48
|
-
|
49
|
-
# gem 'rails', :git => 'git@github.com:rails/rails.git'
|
50
|
-
# gem 'honeybadger', :path => '../'
|
51
|
-
# gem 'capistrano', '~> 2.0'
|
52
|
-
# end
|
53
|
-
|
54
|
-
appraise 'rake' do
|
27
|
+
appraise 'sinatra' do
|
55
28
|
gem 'sinatra'
|
56
29
|
gem 'honeybadger', :path => '../'
|
57
30
|
end
|
58
31
|
|
59
|
-
appraise '
|
60
|
-
gem '
|
32
|
+
appraise 'rails2.3' do
|
33
|
+
gem 'rails', '~> 2.3.18'
|
34
|
+
gem 'rake', '0.9.5'
|
61
35
|
gem 'honeybadger', :path => '../'
|
36
|
+
gem 'capistrano', '~> 2.0'
|
62
37
|
end
|
63
38
|
|
64
|
-
|
65
|
-
|
66
|
-
|
39
|
+
if RUBY_VERSION > '1.9'
|
40
|
+
appraise 'rails3.0' do
|
41
|
+
gem 'rails', '~> 3.0.17'
|
42
|
+
gem 'honeybadger', :path => '../'
|
43
|
+
gem 'better_errors', :require => false
|
44
|
+
gem 'rack-mini-profiler', '~>0.1.31 ', :require => false
|
45
|
+
gem 'capistrano', '~> 2.0'
|
46
|
+
end
|
47
|
+
|
48
|
+
appraise 'rails3.1' do
|
49
|
+
gem 'rails', '~> 3.1.12'
|
50
|
+
gem 'honeybadger', :path => '../'
|
51
|
+
gem 'better_errors', :require => false
|
52
|
+
gem 'rack-mini-profiler', :require => false
|
53
|
+
gem 'capistrano', '~> 2.0'
|
54
|
+
end
|
55
|
+
|
56
|
+
appraise 'rails3.2' do
|
57
|
+
gem 'rails', '~> 3.2.12'
|
58
|
+
gem 'honeybadger', :path => '../'
|
59
|
+
gem 'better_errors', :require => false
|
60
|
+
gem 'rack-mini-profiler', :require => false
|
61
|
+
gem 'capistrano', '~> 2.0'
|
62
|
+
end
|
63
|
+
|
64
|
+
if RUBY_VERSION > '1.9.2'
|
65
|
+
# The latest officially supported Rails release
|
66
|
+
appraise 'rails' do
|
67
|
+
gem 'rails', '~> 4.0.3'
|
68
|
+
gem 'honeybadger', :path => '../'
|
69
|
+
gem 'capistrano', '~> 3.0'
|
70
|
+
gem 'better_errors', :require => false
|
71
|
+
gem 'rack-mini-profiler', :require => false
|
72
|
+
end
|
73
|
+
|
74
|
+
appraise 'rails4.1' do
|
75
|
+
gem 'rails', '~> 4.1.0.beta1'
|
76
|
+
gem 'honeybadger', :path => '../'
|
77
|
+
gem 'capistrano', '~> 3.0'
|
78
|
+
gem 'better_errors', :require => false
|
79
|
+
gem 'rack-mini-profiler', :require => false
|
80
|
+
end
|
81
|
+
end
|
67
82
|
end
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,33 @@
|
|
1
|
-
## Honeybadger 1.
|
1
|
+
## Honeybadger 1.14.0 ##
|
2
|
+
|
3
|
+
* Catch exceptions in Thor tasks.
|
4
|
+
|
5
|
+
*Ryan Sonnek*
|
6
|
+
|
7
|
+
* Add option to send local_variables when binding_of_caller is
|
8
|
+
installed. In order to enable it, the gem must be present in the
|
9
|
+
project, and `config.send_local_variables` must be `true`.
|
10
|
+
|
11
|
+
*Joshua Wood*
|
12
|
+
|
13
|
+
* Create Honeybadger::Rack namespace and add deprecation warnings for
|
14
|
+
old middleware.
|
15
|
+
|
16
|
+
*Joshua Wood*
|
17
|
+
|
18
|
+
* Support ruby 2.1 with Exception#cause
|
19
|
+
|
20
|
+
*Ravil Bayramgalin*
|
21
|
+
|
22
|
+
* Add support for 3rd-party integrations via dependency injection.
|
23
|
+
|
24
|
+
*Joshua Wood*
|
25
|
+
|
26
|
+
* Delayed Job support
|
27
|
+
|
28
|
+
*Joshua Wood*
|
29
|
+
|
30
|
+
## Honeybadger 1.13.2 ##
|
2
31
|
|
3
32
|
* Fix 2 bugs where the Rails raises exceptions when accessing session
|
4
33
|
information. (ActionDispatch::Session::SessionRestoreError) and
|
data/Gemfile.lock
CHANGED
data/MIT-LICENSE
CHANGED
@@ -1,7 +1,8 @@
|
|
1
|
-
|
1
|
+
Copyright (c) 2012-2013, Honeybadger Industries LLC
|
2
2
|
Portions Copyright (c) 2012 Noah Lorang
|
3
3
|
Portions Copyright (c) 2007-2012, Exceptional DBA Airbrake.io
|
4
4
|
Portions Copyright (c) 2009 Brenton Fletcher (http://i.bloople.net i@bloople.net)
|
5
|
+
Portions Copyright (c) 2014 Charlie Somerville
|
5
6
|
|
6
7
|
The original version of the Honeybadger gem was based on the
|
7
8
|
MIT-licensed Airbrake gem. All code contained herein that is
|
data/Rakefile
CHANGED
@@ -61,7 +61,7 @@ Cucumber::Rake::Task.new(:cucumber) do |t|
|
|
61
61
|
t.fork = true
|
62
62
|
t.cucumber_opts = ['--format', 'progress', '--tags', '~@pending']
|
63
63
|
|
64
|
-
unless ENV['BUNDLE_GEMFILE'] =~ /rails
|
64
|
+
unless ENV['BUNDLE_GEMFILE'] =~ /rails[^2]/
|
65
65
|
t.cucumber_opts << '--tags ~@rails_3'
|
66
66
|
end
|
67
67
|
|
@@ -76,8 +76,12 @@ Cucumber::Rake::Task.new(:cucumber) do |t|
|
|
76
76
|
t.cucumber_opts << 'features/rack.feature'
|
77
77
|
when /rake/
|
78
78
|
t.cucumber_opts << 'features/rake.feature'
|
79
|
+
when /thor/
|
80
|
+
t.cucumber_opts << 'features/thor.feature'
|
79
81
|
when /sinatra/
|
80
82
|
t.cucumber_opts << 'features/sinatra.feature'
|
83
|
+
else
|
84
|
+
t.cucumber_opts << 'features/standalone.feature'
|
81
85
|
end unless ENV['FEATURE']
|
82
86
|
end
|
83
87
|
|
@@ -94,13 +98,13 @@ end
|
|
94
98
|
|
95
99
|
desc "Create tag v#{version} and build and push #{gem_file} to Rubygems"
|
96
100
|
task :release => :build do
|
97
|
-
unless `git branch` =~ /^\*
|
98
|
-
puts "You must be on the
|
101
|
+
unless `git branch` =~ /^\* master$/
|
102
|
+
puts "You must be on the master branch to release!"
|
99
103
|
exit!
|
100
104
|
end
|
101
105
|
sh "git commit --allow-empty -a -m 'Release #{version}'"
|
102
106
|
sh "git tag v#{version}"
|
103
|
-
sh "git push origin
|
107
|
+
sh "git push origin master"
|
104
108
|
sh "git push origin v#{version}"
|
105
109
|
sh "gem push pkg/#{name}-#{version}.gem"
|
106
110
|
end
|
@@ -0,0 +1,73 @@
|
|
1
|
+
Feature: Use the notifier in a plain Ruby app
|
2
|
+
Scenario: Rescue and exception in a Rack app
|
3
|
+
Given the following Ruby app:
|
4
|
+
"""
|
5
|
+
require 'honeybadger'
|
6
|
+
|
7
|
+
Honeybadger.configure do |config|
|
8
|
+
config.api_key = 'my_api_key'
|
9
|
+
config.logger = Logger.new STDOUT
|
10
|
+
end
|
11
|
+
|
12
|
+
begin
|
13
|
+
fail 'oops!'
|
14
|
+
rescue => e
|
15
|
+
Honeybadger.notify(e)
|
16
|
+
end
|
17
|
+
"""
|
18
|
+
When I execute the file
|
19
|
+
Then I should receive a Honeybadger notification
|
20
|
+
|
21
|
+
Scenario: Dependency injection
|
22
|
+
Given the following Ruby app:
|
23
|
+
"""
|
24
|
+
require 'honeybadger/dependency'
|
25
|
+
|
26
|
+
Honeybadger::Dependency.register do
|
27
|
+
injection { puts 'injected' }
|
28
|
+
end
|
29
|
+
|
30
|
+
require 'honeybadger'
|
31
|
+
|
32
|
+
Honeybadger.configure do |config|
|
33
|
+
config.api_key = 'my_api_key'
|
34
|
+
config.logger = Logger.new STDOUT
|
35
|
+
end
|
36
|
+
|
37
|
+
begin
|
38
|
+
fail 'oops!'
|
39
|
+
rescue => e
|
40
|
+
Honeybadger.notify(e)
|
41
|
+
end
|
42
|
+
"""
|
43
|
+
When I execute the file
|
44
|
+
Then the output should contain "injected"
|
45
|
+
And I should receive a Honeybadger notification
|
46
|
+
|
47
|
+
# TODO: also test 'Then the output should contain "injection failure"' after default
|
48
|
+
# logging is added.
|
49
|
+
Scenario: Dependency injection exception
|
50
|
+
Given the following Ruby app:
|
51
|
+
"""
|
52
|
+
require 'honeybadger/dependency'
|
53
|
+
|
54
|
+
Honeybadger::Dependency.register do
|
55
|
+
injection { fail 'injection failure' }
|
56
|
+
end
|
57
|
+
|
58
|
+
require 'honeybadger'
|
59
|
+
|
60
|
+
Honeybadger.configure do |config|
|
61
|
+
config.api_key = 'my_api_key'
|
62
|
+
config.logger = Logger.new STDOUT
|
63
|
+
end
|
64
|
+
|
65
|
+
begin
|
66
|
+
fail 'oops!'
|
67
|
+
rescue => e
|
68
|
+
Honeybadger.notify(e)
|
69
|
+
end
|
70
|
+
"""
|
71
|
+
When I execute the file
|
72
|
+
Then the output should not contain "injected"
|
73
|
+
And I should receive a Honeybadger notification
|
@@ -3,11 +3,10 @@ Given /^the following Rack app:$/ do |definition|
|
|
3
3
|
end
|
4
4
|
|
5
5
|
When /^I perform a Rack request to "([^\"]*)"$/ do |url|
|
6
|
-
shim_file = File.join(PROJECT_ROOT, 'features', 'support', 'honeybadger_shim.rb.template')
|
7
6
|
request_file = File.join(TEMP_DIR, 'rack_request.rb')
|
8
7
|
File.open(request_file, 'w') do |file|
|
9
8
|
file.puts "require 'rubygems'"
|
10
|
-
file.puts IO.read(
|
9
|
+
file.puts IO.read(SHIM_FILE)
|
11
10
|
file.puts IO.read(RACK_FILE)
|
12
11
|
file.puts "env = Rack::MockRequest.env_for(#{url.inspect})"
|
13
12
|
file.puts "status, headers, body = app.call(env)"
|
@@ -0,0 +1,12 @@
|
|
1
|
+
Given /^the following Ruby app:$/ do |definition|
|
2
|
+
File.open(RUBY_FILE, 'w') do |file|
|
3
|
+
file.puts "require 'rubygems'"
|
4
|
+
file.write(IO.read(SHIM_FILE))
|
5
|
+
file.write(definition)
|
6
|
+
end
|
7
|
+
end
|
8
|
+
|
9
|
+
When /^I execute the file$/ do
|
10
|
+
step %(I run `ruby #{RUBY_FILE}`)
|
11
|
+
end
|
12
|
+
|
data/features/support/env.rb
CHANGED
@@ -5,6 +5,8 @@ PROJECT_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..', '..'
|
|
5
5
|
TEMP_DIR = File.join(PROJECT_ROOT, 'tmp').freeze
|
6
6
|
LOCAL_RAILS_ROOT = File.join(TEMP_DIR, 'rails_root').freeze
|
7
7
|
RACK_FILE = File.join(TEMP_DIR, 'rack_app.rb').freeze
|
8
|
+
RUBY_FILE = File.join(TEMP_DIR, 'ruby_app.rb').freeze
|
9
|
+
SHIM_FILE = File.join(PROJECT_ROOT, 'features', 'support', 'honeybadger_shim.rb.template')
|
8
10
|
|
9
11
|
Before do
|
10
12
|
FileUtils.rm_rf(LOCAL_RAILS_ROOT)
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'thor'
|
2
|
+
require 'honeybadger'
|
3
|
+
|
4
|
+
require 'sham_rack'
|
5
|
+
|
6
|
+
ShamRack.at("api.honeybadger.io", 443).stub.tap do |app|
|
7
|
+
app.register_resource("/v1/notices/", %({"id":"123456789"}), "application/json")
|
8
|
+
app.register_resource("/v1/ping/", %({"features":{"notices":true,"feedback":true}, "limit":null}), "application/json")
|
9
|
+
end
|
10
|
+
|
11
|
+
Honeybadger.configure do |config|
|
12
|
+
config.api_key = 'asdf'
|
13
|
+
config.debug = true
|
14
|
+
config.logger = Logger.new(STDOUT)
|
15
|
+
end
|
16
|
+
|
17
|
+
class Test < Thor
|
18
|
+
desc "honeybadger", "this goes boom"
|
19
|
+
def honeybadger
|
20
|
+
fail 'boom'
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "rails", "~> 4.0.3"
|
6
|
+
gem "honeybadger", :path=>"../"
|
7
|
+
gem "capistrano", "~> 3.0"
|
8
|
+
gem "better_errors", :require=>false
|
9
|
+
gem "rack-mini-profiler", :require=>false
|
10
|
+
|
11
|
+
gemspec :path=>"../"
|
data/gemfiles/rake.gemfile
CHANGED
data/honeybadger.gemspec
CHANGED
@@ -4,8 +4,8 @@ Gem::Specification.new do |s|
|
|
4
4
|
s.rubygems_version = '1.3.5'
|
5
5
|
|
6
6
|
s.name = 'honeybadger'
|
7
|
-
s.version = '1.
|
8
|
-
s.date = '2014-05-
|
7
|
+
s.version = '1.14.0'
|
8
|
+
s.date = '2014-05-28'
|
9
9
|
|
10
10
|
s.summary = 'Error reports you can be happy about.'
|
11
11
|
s.description = 'Make managing application errors a more pleasant experience.'
|
@@ -54,33 +54,33 @@ Gem::Specification.new do |s|
|
|
54
54
|
features/rails3.x.feature
|
55
55
|
features/rake.feature
|
56
56
|
features/sinatra.feature
|
57
|
+
features/standalone.feature
|
57
58
|
features/step_definitions/metal_steps.rb
|
58
59
|
features/step_definitions/rack_steps.rb
|
59
60
|
features/step_definitions/rails_steps.rb
|
60
61
|
features/step_definitions/rake_steps.rb
|
62
|
+
features/step_definitions/standalone_steps.rb
|
63
|
+
features/step_definitions/thor_steps.rb
|
61
64
|
features/support/env.rb
|
62
65
|
features/support/honeybadger_failure_shim.rb.template
|
63
66
|
features/support/honeybadger_shim.rb.template
|
64
67
|
features/support/rails.rb
|
65
68
|
features/support/rake/Rakefile
|
69
|
+
features/support/test.thor
|
70
|
+
features/thor.feature
|
71
|
+
gemfiles/binding_of_caller.gemfile
|
66
72
|
gemfiles/rack.gemfile
|
67
|
-
gemfiles/
|
73
|
+
gemfiles/rails.gemfile
|
68
74
|
gemfiles/rails2.3.gemfile
|
69
|
-
gemfiles/rails2.3.gemfile.lock
|
70
75
|
gemfiles/rails3.0.gemfile
|
71
|
-
gemfiles/rails3.0.gemfile.lock
|
72
76
|
gemfiles/rails3.1.gemfile
|
73
|
-
gemfiles/rails3.1.gemfile.lock
|
74
77
|
gemfiles/rails3.2.gemfile
|
75
|
-
gemfiles/rails3.2.gemfile.lock
|
76
78
|
gemfiles/rails4.0.gemfile
|
77
|
-
gemfiles/rails4.0.gemfile.lock
|
78
79
|
gemfiles/rails4.1.gemfile
|
79
|
-
gemfiles/rails4.1.gemfile.lock
|
80
80
|
gemfiles/rake.gemfile
|
81
|
-
gemfiles/rake.gemfile.lock
|
82
81
|
gemfiles/sinatra.gemfile
|
83
|
-
gemfiles/
|
82
|
+
gemfiles/standalone.gemfile
|
83
|
+
gemfiles/thor.gemfile
|
84
84
|
generators/honeybadger/honeybadger_generator.rb
|
85
85
|
generators/honeybadger/lib/insert_commands.rb
|
86
86
|
generators/honeybadger/lib/rake_commands.rb
|
@@ -95,13 +95,23 @@ Gem::Specification.new do |s|
|
|
95
95
|
lib/honeybadger/capistrano/legacy.rb
|
96
96
|
lib/honeybadger/capistrano/tasks.rake
|
97
97
|
lib/honeybadger/configuration.rb
|
98
|
+
lib/honeybadger/dependency.rb
|
99
|
+
lib/honeybadger/exception_extensions.rb
|
100
|
+
lib/honeybadger/integrations.rb
|
101
|
+
lib/honeybadger/integrations/delayed_job.rb
|
102
|
+
lib/honeybadger/integrations/delayed_job/plugin.rb
|
98
103
|
lib/honeybadger/integrations/sidekiq.rb
|
104
|
+
lib/honeybadger/integrations/thor.rb
|
99
105
|
lib/honeybadger/monitor.rb
|
100
106
|
lib/honeybadger/monitor/railtie.rb
|
101
107
|
lib/honeybadger/monitor/sender.rb
|
102
108
|
lib/honeybadger/monitor/worker.rb
|
103
109
|
lib/honeybadger/notice.rb
|
110
|
+
lib/honeybadger/payload.rb
|
104
111
|
lib/honeybadger/rack.rb
|
112
|
+
lib/honeybadger/rack/error_notifier.rb
|
113
|
+
lib/honeybadger/rack/user_feedback.rb
|
114
|
+
lib/honeybadger/rack/user_informer.rb
|
105
115
|
lib/honeybadger/rails.rb
|
106
116
|
lib/honeybadger/rails/action_controller_catcher.rb
|
107
117
|
lib/honeybadger/rails/controller_methods.rb
|
@@ -125,10 +135,16 @@ Gem::Specification.new do |s|
|
|
125
135
|
spec/honeybadger/backtrace_spec.rb
|
126
136
|
spec/honeybadger/capistrano_spec.rb
|
127
137
|
spec/honeybadger/configuration_spec.rb
|
138
|
+
spec/honeybadger/dependency_spec.rb
|
139
|
+
spec/honeybadger/exception_extensions_spec.rb
|
140
|
+
spec/honeybadger/integrations/delayed_job_spec.rb
|
141
|
+
spec/honeybadger/integrations/sidekiq_spec.rb
|
142
|
+
spec/honeybadger/integrations/thor_spec.rb
|
128
143
|
spec/honeybadger/logger_spec.rb
|
129
144
|
spec/honeybadger/monitor/worker_spec.rb
|
130
145
|
spec/honeybadger/notice_spec.rb
|
131
146
|
spec/honeybadger/notifier_spec.rb
|
147
|
+
spec/honeybadger/payload_spec.rb
|
132
148
|
spec/honeybadger/rack_spec.rb
|
133
149
|
spec/honeybadger/rails/action_controller_spec.rb
|
134
150
|
spec/honeybadger/rails_spec.rb
|