rollbar 3.6.0 → 3.6.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 +4 -4
- data/.github/workflows/ci.yml +2 -0
- data/.rubocop.yml +0 -2
- data/Gemfile +5 -1
- 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/item/frame.rb +5 -1
- 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: 8ce847d9d203df98cce383ce6b2c3a7cc705faae99dea73708ad26db4d7cff36
|
4
|
+
data.tar.gz: cee1a877098dc3b1aa6348673621fe0b8825620604da61116d0666537734c1f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96bf99437f0d9d4730d8d4bd4f5b93ed95fcb17fb99750cdbb3a46ef565667401685c563a6f2358294ad8a38d78e491af7920ee7bd286728a14cf1e530265358
|
7
|
+
data.tar.gz: dc0964ada9101897d1826f34544e8c713129a727837b4fa7b70b933e3ceff7ae051b5f9c35109413020f41166f8e3380bd6d8e8f77c0cd5263dad5d3858d9c9f
|
data/.github/workflows/ci.yml
CHANGED
data/.rubocop.yml
CHANGED
data/Gemfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This Gemfile is compatible with Ruby 2.5.0 or greater. To test with
|
2
2
|
# earlier Rubies, use the appropriate Gemfile from the ./gemfiles/ dir.
|
3
|
-
ruby '3.
|
3
|
+
ruby '3.4.1'
|
4
4
|
|
5
5
|
source 'https://rubygems.org'
|
6
6
|
|
@@ -27,6 +27,10 @@ else
|
|
27
27
|
gem 'rspec-rails', '~> 6.0.3'
|
28
28
|
end
|
29
29
|
|
30
|
+
if GEMFILE_RAILS_VERSION < '7.1'
|
31
|
+
gem 'concurrent-ruby', '1.3.4'
|
32
|
+
end
|
33
|
+
|
30
34
|
if GEMFILE_RAILS_VERSION < '6.0'
|
31
35
|
gem 'sqlite3', '< 1.4.0', :platform => [:ruby, :mswin, :mingw]
|
32
36
|
else
|
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/item/frame.rb
CHANGED
@@ -18,7 +18,11 @@ module Rollbar
|
|
18
18
|
|
19
19
|
def to_h
|
20
20
|
# parse the line
|
21
|
-
match =
|
21
|
+
match = if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.4.0')
|
22
|
+
frame.match(/(.*):(\d+)(?::in '([^']+)')?/)
|
23
|
+
else
|
24
|
+
frame.match(/(.*):(\d+)(?::in `([^']+)')?/)
|
25
|
+
end
|
22
26
|
|
23
27
|
return unknown_frame unless match
|
24
28
|
|
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.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:
|
11
|
+
date: 2025-03-31 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
|