rollbar 0.12.18 → 0.12.19
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 +8 -4
- data/lib/rollbar/rake_tasks.rb +6 -4
- data/lib/rollbar/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9c34abc097642e5062e12ace61155d9381834ac1
|
|
4
|
+
data.tar.gz: e0695d97edf52dfedc5dd44d8b15c38c69b6ed59
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b577a5b47d117c01698fcc7779352c001e3ecd18aa5eebf56cb79d9003f9c48e598d52d606769b16494777eea497ab01146e4bd35a0a702bf842be0bc6ddca8a
|
|
7
|
+
data.tar.gz: 07c9afdd236c9d9f2655678c76a2b955cc3b21aa9162cf10370b621ab1300a0f8d07f7da5f395be7c624d564a1d27be34a67afef7aed46ad831e339366a552de
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
**0.12.19**
|
|
4
|
+
- Fix rake test task in production
|
|
5
|
+
- Report an additional simple error message in the rake test task
|
|
6
|
+
|
|
3
7
|
**0.12.18**
|
|
4
8
|
- Insert RollbarRequestStore middleware at the end in case the ActiveRecord ConnectionManagement middleware isn't used
|
|
5
9
|
- Scope Capistrano 3 task by server role [#110](https://github.com/rollbar/rollbar-gem/pull/110)
|
|
@@ -236,7 +240,7 @@
|
|
|
236
240
|
- Replaced activesupport dependency with multi_json
|
|
237
241
|
|
|
238
242
|
**0.5.5**
|
|
239
|
-
- Added activesupport dependency for use without Rails
|
|
243
|
+
- Added activesupport dependency for use without Rails
|
|
240
244
|
|
|
241
245
|
**0.5.4**
|
|
242
246
|
- Added new default scrub params
|
|
@@ -245,7 +249,7 @@
|
|
|
245
249
|
- Add `Ratchetio.silenced`; which allows disabling reporting for a given block. See README for usage.
|
|
246
250
|
|
|
247
251
|
**0.5.2**
|
|
248
|
-
- Fix compat issue with delayed_job below version 3. Exceptions raised by delayed_job below version 3 will not be automatically caught; upgrade to v3 or catch and report by hand.
|
|
252
|
+
- Fix compat issue with delayed_job below version 3. Exceptions raised by delayed_job below version 3 will not be automatically caught; upgrade to v3 or catch and report by hand.
|
|
249
253
|
|
|
250
254
|
**0.5.1**
|
|
251
255
|
- Save the exception uuid in `env['ratchetio.exception_uuid']` for display in user-facing error pages.
|
|
@@ -289,9 +293,9 @@
|
|
|
289
293
|
- Recursively filter files out of the params hash. Thanks to [trisweb](https://github.com/trisweb) for the pull request.
|
|
290
294
|
|
|
291
295
|
**0.4.0**
|
|
292
|
-
|
|
296
|
+
|
|
293
297
|
- Breaking change to make the "person" more configurable. If you were previously relying on your `current_member` method being called to return the person object, you will need to add the following line to `config/initializers/ratchetio.rb`:
|
|
294
|
-
|
|
298
|
+
|
|
295
299
|
config.person_method = "current_member"
|
|
296
300
|
|
|
297
301
|
- Person id, username, and email method names are now configurable -- see README for details.
|
data/lib/rollbar/rake_tasks.rb
CHANGED
|
@@ -19,6 +19,8 @@ namespace :rollbar do
|
|
|
19
19
|
exit
|
|
20
20
|
end
|
|
21
21
|
|
|
22
|
+
Rollbar.report_message("Test error from rollbar:test", "error")
|
|
23
|
+
|
|
22
24
|
begin
|
|
23
25
|
require './app/controllers/application_controller'
|
|
24
26
|
rescue LoadError
|
|
@@ -51,18 +53,18 @@ namespace :rollbar do
|
|
|
51
53
|
Rails.application.routes.draw do
|
|
52
54
|
get 'verify' => 'application#verify', :as => 'verify'
|
|
53
55
|
end
|
|
54
|
-
|
|
56
|
+
|
|
55
57
|
# from http://stackoverflow.com/questions/5270835/authlogic-activation-problems
|
|
56
58
|
if defined? Authlogic
|
|
57
59
|
Authlogic::Session::Base.controller = Authlogic::ControllerAdapters::RailsAdapter.new(self)
|
|
58
60
|
end
|
|
59
|
-
|
|
61
|
+
|
|
60
62
|
puts "Processing..."
|
|
61
63
|
protocol = (defined? Rails.application.config.force_ssl && Rails.application.config.force_ssl) ? 'https' : 'http'
|
|
62
64
|
env = Rack::MockRequest.env_for("#{protocol}://www.example.com/verify")
|
|
63
65
|
status, headers, response = Rails.application.call(env)
|
|
64
|
-
|
|
65
|
-
unless status == 500
|
|
66
|
+
|
|
67
|
+
unless status.to_i == 500
|
|
66
68
|
puts "Test failed! You may have a configuration issue, or you could be using a gem that's blocking the test. Contact support@rollbar.com if you need help troubleshooting."
|
|
67
69
|
end
|
|
68
70
|
end
|
data/lib/rollbar/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rollbar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.12.
|
|
4
|
+
version: 0.12.19
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Rue
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-05-
|
|
11
|
+
date: 2014-05-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: multi_json
|