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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 46603900db3bb897dbbdd72baa78f21e8c39ad43
4
- data.tar.gz: ba03f938cc791c7db382f879e40ace48c582fd51
3
+ metadata.gz: 49719df8414ae90f604bc7b140f82c6966d564b2
4
+ data.tar.gz: 9e06c6c36b98bf02398bcdf4d6268f57fa01d390
5
5
  SHA512:
6
- metadata.gz: 44e60e68802ca3cd885b8ae927c533d187dd213cac504843fe5edb4430778e26595306a24807f4263ca5798050424cbd7244346f201c61570fef67625d2919a9
7
- data.tar.gz: 34d2198535bf88d45ed9df35e9c3442427ed5e63b5686c5cc27a764887f76f1918609c23fa8a04d3fa45759c47ed9dca166f3c82944ffb7e93cf7a32ec669319
6
+ metadata.gz: aeb6ea575bd2c8ba206936f76882cf304cffb1822be011f375c302f03b95f261558f792cea8aabcd79a799dce7c42d663b1034b1da39c2c7aee8fa9c03d4e375
7
+ data.tar.gz: d2848c3268c75a73f1086ff8a8511b5eacb4d5649646fb7fbe1d9b7721efbed8932ae1ff21653e0b8b02aec78bc7e343c2b7d39c41d729adb373a1162062a9b5
@@ -1,5 +1,8 @@
1
1
  # Change Log
2
2
 
3
+ **0.12.7**
4
+ - Fix error reporting errors when route controller or action is nil (bug introduced in 0.12.4)
5
+
3
6
  **0.12.6**
4
7
  - Added [#78](https://github.com/rollbar/rollbar-gem/pull/78), ability to ignore exceptions from specific persons
5
8
 
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)
@@ -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]
@@ -1,3 +1,3 @@
1
1
  module Rollbar
2
- VERSION = "0.12.6"
2
+ VERSION = "0.12.7"
3
3
  end
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.6
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-10 00:00:00.000000000 Z
11
+ date: 2014-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json