rollbar 3.6.1 → 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/Gemfile +1 -1
- data/lib/rollbar/item/frame.rb +5 -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/Gemfile
CHANGED
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/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: 2025-
|
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
|