rollbar 0.12.6 → 0.12.7
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 +3 -0
- data/THANKS.md +1 -0
- data/lib/rollbar.rb +1 -1
- 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: 49719df8414ae90f604bc7b140f82c6966d564b2
|
|
4
|
+
data.tar.gz: 9e06c6c36b98bf02398bcdf4d6268f57fa01d390
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aeb6ea575bd2c8ba206936f76882cf304cffb1822be011f375c302f03b95f261558f792cea8aabcd79a799dce7c42d663b1034b1da39c2c7aee8fa9c03d4e375
|
|
7
|
+
data.tar.gz: d2848c3268c75a73f1086ff8a8511b5eacb4d5649646fb7fbe1d9b7721efbed8932ae1ff21653e0b8b02aec78bc7e343c2b7d39c41d729adb373a1162062a9b5
|
data/CHANGELOG.md
CHANGED
data/THANKS.md
CHANGED
|
@@ -19,6 +19,7 @@ Huge thanks to the following contributors (by github username). For the most up-
|
|
|
19
19
|
- [magnolia-fan](https://github.com/magnolia-fan)
|
|
20
20
|
- [miloops](https://github.com/miloops)
|
|
21
21
|
- [mipearson](https://github.com/mipearson)
|
|
22
|
+
- [petergoldstein](https://github.com/petergoldstein)
|
|
22
23
|
- [rogercampos](https://github.com/rogercampos)
|
|
23
24
|
- [siong1987](https://github.com/siong1987)
|
|
24
25
|
- [trisweb](https://github.com/trisweb)
|
data/lib/rollbar.rb
CHANGED
|
@@ -85,7 +85,7 @@ module Rollbar
|
|
|
85
85
|
data = exception_data(exception, level ? level : filtered_level(exception))
|
|
86
86
|
if request_data
|
|
87
87
|
if request_data[:route]
|
|
88
|
-
data[:context] = request_data[:route][:controller] + '#' + request_data[:route][:action]
|
|
88
|
+
data[:context] = "#{request_data[:route][:controller]}" + '#' + "#{request_data[:route][:action]}"
|
|
89
89
|
end
|
|
90
90
|
|
|
91
91
|
request_data[:env].reject!{|k, v| v.is_a?(IO) } if request_data[:env]
|
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.7
|
|
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-01-
|
|
11
|
+
date: 2014-01-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: multi_json
|