rollbar 3.3.2 → 3.3.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 96ef666aefbc42a6c9ca188bc402eeaf6ebded4e5cddf43331596f9fe9f46cfa
4
- data.tar.gz: c5d63af42130d86639793bae8d39ba20b82d85aa6dfec3afd5d5bdc6eddab669
3
+ metadata.gz: aecd74252733bfe7a1a83a7319433adf9e22d226742b442e769e42cb09ea6de4
4
+ data.tar.gz: 7a49f283424610487fd2ea4f1aad2f0ab6448e09632d7aaa9667ad33c3dd2599
5
5
  SHA512:
6
- metadata.gz: '09ccb737d948861e53bd9a59ddbde6c83362495fa1ef635d14a43ba2d2cab3c48279df9fb15a4118c843e4699f93d75820e3535ec52a770b7324b575ad2b28d2'
7
- data.tar.gz: 6d1b06208d8daec4361fb4c895be6934a73e0fb33bd7ff7996d6353d27395e20513e0a0929d7d1bb5ee39dccf15430a12d988d4abb5ee0438a62ba06dcbf4c91
6
+ metadata.gz: 7354db5dffcb7cbc1d6971ec5a0865f3e423f17d8db29663f2e7cd39d52b52166994edfed6e280993e36928cb85517d305adf8a85dc69d1f0d4a2013fb6eaa34
7
+ data.tar.gz: e775415b7f8bfab6a55af1fffa11d1500f8ac54236f6002695425a25d752f09c3703fde1a3ceef3e3f678cf5f9da8964d2a5c955bfb1247737640103c78a5b0c
data/Gemfile CHANGED
@@ -66,7 +66,7 @@ else
66
66
  gem 'delayed_job', '~> 4.1', :require => false
67
67
  end
68
68
  gem 'generator_spec'
69
- gem 'redis'
69
+ gem 'redis', '<= 4.8.0'
70
70
  gem 'resque', '< 2.0.0'
71
71
  gem 'rubocop', '1.15.0', :require => false # pin specific version, update manually
72
72
  gem 'rubocop-performance', :require => false
data/README.md CHANGED
@@ -1,13 +1,35 @@
1
- # Rollbar-gem
1
+ <p align="center">
2
+ <img alt="rollbar-logo" src="https://user-images.githubusercontent.com/3300063/207964480-54eda665-d6fe-4527-ba51-b0ab3f41f10b.png" />
3
+ </p>
4
+
5
+ <h1 align="center">Rollbar Ruby Gem</h1>
6
+
7
+ <p align="center">
8
+ <strong>Proactively discover, predict, and resolve errors in real-time with <a href="https://rollbar.com">Rollbar’s</a> error monitoring platform. <a href="https://rollbar.com/signup/">Start tracking errors today</a>!</strong>
9
+ </p>
10
+
11
+
2
12
  ![Build Status](https://github.com/rollbar/rollbar-gem/workflows/Rollbar-gem%20CI/badge.svg?tag=latest)
3
13
  [![Gem Version](https://badge.fury.io/rb/rollbar.svg)](http://badge.fury.io/rb/rollbar)
4
14
  [![SemVer](https://api.dependabot.com/badges/compatibility_score?dependency-name=rollbar&package-manager=bundler&version-scheme=semver&target-version=latest)](https://dependabot.com/compatibility-score.html?dependency-name=rollbar&package-manager=bundler&version-scheme=semver&new-version=latest)
5
15
 
6
16
 
17
+ ---
18
+
7
19
  [Rollbar](https://rollbar.com) is a real-time exception reporting 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.
8
20
 
9
21
  Rollbar-gem is the SDK for Ruby apps and includes support for apps using Rails, Sinatra, Rack, plain Ruby, and other frameworks.
10
22
 
23
+
24
+ ## Key benefits of using Rollbar Ruby Gem are:
25
+
26
+ - **Frameworks:** Rollbar Ruby Gem supports popular Ruby frameworks such as <a href="https://docs.rollbar.com/docs/rails">Rails</a>, <a href="https://docs.rollbar.com/docs/sinatra">Sinatra</a>, <a href="https://docs.rollbar.com/docs/grape">Grape</a> and more.
27
+ - **Integrations:** Rollbar Ruby has integrations for <a href="https://docs.rollbar.com/docs/resque-integration">Resque</a>, <a href="https://docs.rollbar.com/docs/activejob-integration">ActiveJob</a>, <a href="https://docs.rollbar.com/docs/using-with-rollbar-agent">rollbar-agent</a>, <a href="https://docs.rollbar.com/docs/sidekiq-integration">Sidekiq</a> and more!
28
+ - **Automatic error grouping:** Rollbar aggregates Occurrences caused by the same error into Items that represent application issues. <a href="https://docs.rollbar.com/docs/grouping-occurrences">Learn more about reducing log noise</a>.
29
+ - **Advanced search:** Filter items by many different properties. <a href="https://docs.rollbar.com/docs/search-items">Learn more about search</a>.
30
+ - **Customizable notifications:** Rollbar supports several messaging and incident management tools where your team can get notified about errors and important events by real-time alerts. <a href="https://docs.rollbar.com/docs/notifications">Learn more about Rollbar notifications</a>.
31
+
32
+
11
33
  ## Setup Instructions
12
34
 
13
35
  1. [Sign up for a Rollbar account](https://rollbar.com/signup)
@@ -34,7 +34,7 @@ gem 'sinatra', :git => 'https://github.com/sinatra/sinatra', :tag =>'v2.1.0'
34
34
  gem 'database_cleaner'
35
35
  gem 'delayed_job', :require => false
36
36
  gem 'generator_spec'
37
- gem 'redis'
37
+ gem 'redis', '<= 4.8.0'
38
38
  gem 'resque'
39
39
  gem 'secure_headers', '~> 6.3.2', :require => false
40
40
  gem 'simplecov', '<= 0.17.1'
@@ -30,7 +30,7 @@ gem 'sinatra', :git => 'https://github.com/sinatra/sinatra', :tag =>'v2.1.0'
30
30
  gem 'database_cleaner'
31
31
  gem 'delayed_job', '4.1.9', :require => false
32
32
  gem 'generator_spec'
33
- gem 'redis'
33
+ gem 'redis', '<= 4.8.0'
34
34
  gem 'resque'
35
35
  gem 'secure_headers', '~> 6.3.2', :require => false
36
36
  gem 'simplecov'
@@ -30,7 +30,7 @@ gem 'sinatra', :git => 'https://github.com/sinatra/sinatra', :tag =>'v2.1.0'
30
30
  gem 'database_cleaner'
31
31
  gem 'delayed_job', '4.1.9', :require => false
32
32
  gem 'generator_spec'
33
- gem 'redis'
33
+ gem 'redis', '<= 4.8.0'
34
34
  gem 'resque'
35
35
  gem 'secure_headers', '~> 6.3.2', :require => false
36
36
  gem 'simplecov'
@@ -30,7 +30,7 @@ gem 'sinatra', :git => 'https://github.com/sinatra/sinatra', :tag =>'v2.1.0'
30
30
  gem 'database_cleaner'
31
31
  gem 'delayed_job', '4.1.10', :require => false
32
32
  gem 'generator_spec'
33
- gem 'redis'
33
+ gem 'redis', '<= 4.8.0'
34
34
  gem 'resque'
35
35
  gem 'secure_headers', '~> 6.3.2', :require => false
36
36
  gem 'simplecov'
@@ -134,6 +134,7 @@ module Rollbar
134
134
 
135
135
  def config_js_tag(env)
136
136
  require 'json'
137
+ require 'rollbar/middleware/js/json_value'
137
138
 
138
139
  js_config = Rollbar::Util.deep_copy(config[:options])
139
140
 
@@ -1,3 +1,3 @@
1
1
  module Rollbar
2
- VERSION = '3.3.2'.freeze
2
+ VERSION = '3.3.3'.freeze
3
3
  end
data/rollbar.gemspec CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |gem|
7
7
 
8
8
  gem.authors = ['Rollbar, Inc.']
9
9
  gem.email = ['support@rollbar.com']
10
- gem.description = 'Easy and powerful exception tracking for Ruby'
10
+ gem.description = "Track and debug errors in your Ruby applications with ease using Rollbar. With this gem, you can easily monitor and report on exceptions and other errors in your code, helping you identify and fix issues more quickly. Rollbar's intuitive interface and advanced error tracking features make it the perfect tool for ensuring the stability and reliability of your Ruby applications."
11
11
  gem.executables = ['rollbar-rails-runner']
12
12
  gem.summary = 'Reports exceptions to Rollbar'
13
13
  gem.homepage = 'https://rollbar.com'
metadata CHANGED
@@ -1,16 +1,20 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rollbar
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.2
4
+ version: 3.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rollbar, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-20 00:00:00.000000000 Z
11
+ date: 2022-12-20 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Easy and powerful exception tracking for Ruby
13
+ description: Track and debug errors in your Ruby applications with ease using Rollbar.
14
+ With this gem, you can easily monitor and report on exceptions and other errors
15
+ in your code, helping you identify and fix issues more quickly. Rollbar's intuitive
16
+ interface and advanced error tracking features make it the perfect tool for ensuring
17
+ the stability and reliability of your Ruby applications.
14
18
  email:
15
19
  - support@rollbar.com
16
20
  executables: