rollbar 1.2.9 → 1.2.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: e9493d3e9cc3010a83a29d4f9557427033205990
4
- data.tar.gz: 4428dd3601a7caa1e03d1ef9c69b06b024646642
3
+ metadata.gz: 8fe0625e1b83ab34a865d3b6a98052126d9229e1
4
+ data.tar.gz: 8dc7faf2db9193997ceae0b41946a854b4b4ec80
5
5
  SHA512:
6
- metadata.gz: fc0e09305ff42a01f654ddb8b89762a5d0466adf0a34d2a179ec0332ccf28ab8dda8deae16d3932fdb075714f4ce469aa8a53d9af78d08284335e259fd9314ec
7
- data.tar.gz: 703b39ce8494345fbfd88c2268a4042dd24df9364b0f920289e1314f2cc192098d5ad36b067b967e42b4a0529eebd80254792c5535a46a7150be0174a7f4d226
6
+ metadata.gz: df09cf158a09200135d4c3237f76dcf444000f4d3d5f8b32dbf2ebc5e7a836afbc6f04c2ee67fd36d2dc10039887566574f511a51411fb55e277eaee74b38a28
7
+ data.tar.gz: 37d0a58dae25f5a9f7230a548a2b0c1bc55b8bb7e4e472c86075561681bd963ac2c9d3424300d548928da88e08b78b1a5017e6eba20b5417b7e98201865a7aa9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.2.10
4
+
5
+ Bug fixes:
6
+
7
+ - Fix bug introduced in 1.2.8 with Sidekiq version < 3. See [#181](https://github.com/rollbar/rollbar-gem/issues/181)
8
+
9
+
3
10
  ## 1.2.9
4
11
 
5
12
  Bug fixes:
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Rollbar notifier for Ruby [![Build Status](https://api.travis-ci.org/rollbar/rollbar-gem.svg?branch=v1.2.9)](https://travis-ci.org/rollbar/rollbar-gem/branches)
1
+ # Rollbar notifier for Ruby [![Build Status](https://api.travis-ci.org/rollbar/rollbar-gem.svg?branch=v1.2.10)](https://travis-ci.org/rollbar/rollbar-gem/branches)
2
2
 
3
3
  <!-- RemoveNext -->
4
4
  Ruby gem for reporting exceptions, errors, and log messages to [Rollbar](https://rollbar.com).
@@ -9,7 +9,7 @@ Ruby gem for reporting exceptions, errors, and log messages to [Rollbar](https:/
9
9
 
10
10
  Add this line to your application's Gemfile:
11
11
 
12
- gem 'rollbar', '~> 1.2.9'
12
+ gem 'rollbar', '~> 1.2.10'
13
13
 
14
14
  And then execute:
15
15
 
@@ -33,7 +33,7 @@ module Rollbar
33
33
 
34
34
  def extract_scope_from(env)
35
35
  scope = env['rollbar.scope']
36
- Rollbar.log_warn('[Rollbar] rollbar.scope key has being removed from Rack env.') unless scope
36
+ Rollbar.log_warn('[Rollbar] rollbar.scope key has been removed from Rack env.') unless scope
37
37
 
38
38
  scope || {}
39
39
  end
@@ -12,7 +12,7 @@ if Sidekiq::VERSION < '3'
12
12
  params = msg.reject{ |k| PARAM_BLACKLIST.include?(k) }
13
13
  scope = { :request => { :params => params } }
14
14
 
15
- Rollbar.scope(scope).report_exception(e)
15
+ Rollbar.scope(scope).error(e)
16
16
  raise
17
17
  end
18
18
  end
@@ -1,3 +1,3 @@
1
1
  module Rollbar
2
- VERSION = "1.2.9"
2
+ VERSION = "1.2.10"
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: 1.2.9
4
+ version: 1.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rollbar, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-20 00:00:00.000000000 Z
11
+ date: 2014-11-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json