rollbar 3.6.0 → 3.6.1
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/.rubocop.yml +0 -2
- data/Gemfile +4 -0
- data/gemfiles/rails50.gemfile +3 -1
- data/gemfiles/rails51.gemfile +1 -0
- data/gemfiles/rails52.gemfile +1 -0
- data/gemfiles/rails60.gemfile +1 -0
- data/gemfiles/rails61.gemfile +1 -0
- data/gemfiles/rails70.gemfile +1 -0
- data/lib/rollbar/notifier.rb +0 -1
- data/lib/rollbar/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 31f15586920ecb703867f190757c35491671f3391ed2b9c02f281809f71b10f4
|
|
4
|
+
data.tar.gz: c96de5c4519b77662362395c4a50750fc25803fc10fbde5eecfebda6fefe6688
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3dc7101d46b693662e8cd1ecce2408176f13f8a770eb4d2af3ff984041728c6158f18c1b362a3c096b95384c6c6493e014d2c6196048b3cb433710c34b579d77
|
|
7
|
+
data.tar.gz: 9440cb71e6cad634faa99e4ea2bdce6f2eba5b0169920c61e17d4c5cbc17eae8e9b9da45113d79cdb943ea842613fa4f3259f8150977bf2373d35586b91fc8ad
|
data/.rubocop.yml
CHANGED
data/Gemfile
CHANGED
data/gemfiles/rails50.gemfile
CHANGED
|
@@ -34,13 +34,15 @@ gem 'sucker_punch', '~> 2.0'
|
|
|
34
34
|
|
|
35
35
|
gem 'rack', '2.1.2' if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.3')
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
gem 'concurrent-ruby', '1.3.4'
|
|
38
38
|
gem 'database_cleaner', '~> 1.8.4'
|
|
39
39
|
gem 'delayed_job', :require => false
|
|
40
40
|
gem 'generator_spec'
|
|
41
41
|
gem 'redis', '<= 3.3.5'
|
|
42
42
|
gem 'resque'
|
|
43
43
|
gem 'secure_headers', '~> 6.3.2', :require => false
|
|
44
|
+
|
|
45
|
+
# We need last sinatra that uses rack 2.1.x
|
|
44
46
|
gem 'sinatra', :git => 'https://github.com/sinatra/sinatra', :tag => 'v2.0.8'
|
|
45
47
|
|
|
46
48
|
unless is_jruby
|
data/gemfiles/rails51.gemfile
CHANGED
|
@@ -37,6 +37,7 @@ gem 'rack', '2.1.2' if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.3')
|
|
|
37
37
|
# We need last sinatra that uses rack 2.1.x
|
|
38
38
|
gem 'sinatra', :git => 'https://github.com/sinatra/sinatra', :tag => 'v2.0.8'
|
|
39
39
|
|
|
40
|
+
gem 'concurrent-ruby', '1.3.4'
|
|
40
41
|
gem 'database_cleaner', '~> 1.8.4'
|
|
41
42
|
gem 'delayed_job', :require => false
|
|
42
43
|
gem 'generator_spec'
|
data/gemfiles/rails52.gemfile
CHANGED
|
@@ -31,6 +31,7 @@ gem 'sucker_punch', '~> 2.0'
|
|
|
31
31
|
# We need last sinatra that uses rack 2.x and ruby 2.5.x
|
|
32
32
|
gem 'sinatra', :git => 'https://github.com/sinatra/sinatra', :tag =>'v2.1.0'
|
|
33
33
|
|
|
34
|
+
gem 'concurrent-ruby', '1.3.4'
|
|
34
35
|
gem 'database_cleaner'
|
|
35
36
|
gem 'delayed_job', :require => false
|
|
36
37
|
gem 'generator_spec'
|
data/gemfiles/rails60.gemfile
CHANGED
|
@@ -27,6 +27,7 @@ gem 'sucker_punch', '~> 2.0'
|
|
|
27
27
|
# We need last sinatra that uses rack 2.x and ruby 2.5.x
|
|
28
28
|
gem 'sinatra', :git => 'https://github.com/sinatra/sinatra', :tag =>'v2.1.0'
|
|
29
29
|
|
|
30
|
+
gem 'concurrent-ruby', '1.3.4'
|
|
30
31
|
gem 'database_cleaner'
|
|
31
32
|
gem 'delayed_job', '4.1.9', :require => false
|
|
32
33
|
gem 'generator_spec'
|
data/gemfiles/rails61.gemfile
CHANGED
|
@@ -27,6 +27,7 @@ gem 'sucker_punch', '~> 2.0'
|
|
|
27
27
|
# We need last sinatra that uses rack 2.x and ruby 2.5.x
|
|
28
28
|
gem 'sinatra', :git => 'https://github.com/sinatra/sinatra', :tag =>'v2.1.0'
|
|
29
29
|
|
|
30
|
+
gem 'concurrent-ruby', '1.3.4'
|
|
30
31
|
gem 'database_cleaner'
|
|
31
32
|
gem 'delayed_job', '4.1.9', :require => false
|
|
32
33
|
gem 'generator_spec'
|
data/gemfiles/rails70.gemfile
CHANGED
|
@@ -27,6 +27,7 @@ gem 'sucker_punch', '~> 2.0'
|
|
|
27
27
|
# We need last sinatra that uses rack 2.x and ruby 2.5.x
|
|
28
28
|
gem 'sinatra', :git => 'https://github.com/sinatra/sinatra', :tag =>'v2.1.0'
|
|
29
29
|
|
|
30
|
+
gem 'concurrent-ruby', '1.3.4'
|
|
30
31
|
gem 'database_cleaner'
|
|
31
32
|
gem 'delayed_job', '4.1.10', :require => false
|
|
32
33
|
gem 'generator_spec'
|
data/lib/rollbar/notifier.rb
CHANGED
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: 3.6.
|
|
4
|
+
version: 3.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rollbar, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-02-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Track and debug errors in your Ruby applications with ease using Rollbar.
|
|
14
14
|
With this gem, you can easily monitor and report on exceptions and other errors
|