rollbar 2.0.1 → 2.0.2

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: cbb3085c5cd8789468b73261ea051425d2f13625
4
- data.tar.gz: fba53cf535dba4c50f2c2dac934a0a3d4ca60098
3
+ metadata.gz: 3192b99dde07b8f93d737831572a14e9c4a70fc8
4
+ data.tar.gz: 54e036304757db8f713901432e1674e4a4d15d26
5
5
  SHA512:
6
- metadata.gz: 9cb4e8d735eb2c5f39bcb951ec2af44e535a0a8fdafb8d6f71a2deb67ab1d0c5f0e9c5ab7656ce36dbb13786bd6844874d5cefd404b8a156912f0304523226ad
7
- data.tar.gz: 9244b8bf16388ce8e5c9b07a779b21d2dd1700faf2041939646da58402a390b25d5060bd6b89dd37142e8d235077303ea916edb6611625043ab4ba34aef827b7
6
+ metadata.gz: eb3a1102861bad460201b1630e8f5f695f1d35f1597619031de0af24f74f88eb9d3416f93030f50ae2c42a9eb3261facd166af26bea23c7ff8d2be634d1c7815
7
+ data.tar.gz: 9224fceb5d30020abc43f760011cc6de687d177569ceba92d500991a9cfc64e88e6834aa700a2c21838e4141995481b15af26d4be6df2464e7d1e34b4d7e2c20
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.0.2
4
+
5
+ Bug fixes:
6
+
7
+ - Fix capistrano task cause a namespace conflict between JSON and Rollbar::JSON.
8
+
3
9
  ## 2.0.1
4
10
 
5
11
  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=v2.0.1)](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=v2.0.2)](https://travis-ci.org/rollbar/rollbar-gem/branches)
2
2
 
3
3
  <!-- RemoveNext -->
4
4
  [Rollbar](https://rollbar.com) is an error tracking service for Ruby and other languages. The Rollbar service will alert you of problems with your code and help you understand them in a ways never possible before. We love it and we hope you will too.
@@ -12,7 +12,7 @@ This is the Ruby library for Rollbar. It will instrument many kinds of Ruby appl
12
12
  Add this line to your application's Gemfile:
13
13
 
14
14
  ```ruby
15
- gem 'rollbar', '~> 2.0.1
15
+ gem 'rollbar', '~> 2.0.2
16
16
  ```
17
17
 
18
18
  And then execute:
@@ -30,7 +30,7 @@ module Rollbar
30
30
  }
31
31
 
32
32
  request = Net::HTTP::Post.new(uri.request_uri)
33
- request.body = JSON.dump(params)
33
+ request.body = ::JSON.dump(params)
34
34
 
35
35
  Net::HTTP.start(uri.host, uri.port, :use_ssl => true) do |http|
36
36
  http.request(request)
@@ -19,7 +19,7 @@ namespace :rollbar do
19
19
  debug "Building Rollbar POST to #{uri} with #{params.inspect}"
20
20
 
21
21
  request = Net::HTTP::Post.new(uri.request_uri)
22
- request.body = JSON.dump(params)
22
+ request.body = ::JSON.dump(params)
23
23
 
24
24
  Net::HTTP.start(uri.host, uri.port, :use_ssl => true) do |http|
25
25
  http.request(request)
@@ -1,3 +1,3 @@
1
1
  module Rollbar
2
- VERSION = "2.0.1"
2
+ VERSION = "2.0.2"
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: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rollbar, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-21 00:00:00.000000000 Z
11
+ date: 2015-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails