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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31f15586920ecb703867f190757c35491671f3391ed2b9c02f281809f71b10f4
4
- data.tar.gz: c96de5c4519b77662362395c4a50750fc25803fc10fbde5eecfebda6fefe6688
3
+ metadata.gz: 8ce847d9d203df98cce383ce6b2c3a7cc705faae99dea73708ad26db4d7cff36
4
+ data.tar.gz: cee1a877098dc3b1aa6348673621fe0b8825620604da61116d0666537734c1f6
5
5
  SHA512:
6
- metadata.gz: 3dc7101d46b693662e8cd1ecce2408176f13f8a770eb4d2af3ff984041728c6158f18c1b362a3c096b95384c6c6493e014d2c6196048b3cb433710c34b579d77
7
- data.tar.gz: 9440cb71e6cad634faa99e4ea2bdce6f2eba5b0169920c61e17d4c5cbc17eae8e9b9da45113d79cdb943ea842613fa4f3259f8150977bf2373d35586b91fc8ad
6
+ metadata.gz: 96bf99437f0d9d4730d8d4bd4f5b93ed95fcb17fb99750cdbb3a46ef565667401685c563a6f2358294ad8a38d78e491af7920ee7bd286728a14cf1e530265358
7
+ data.tar.gz: dc0964ada9101897d1826f34544e8c713129a727837b4fa7b70b933e3ceff7ae051b5f9c35109413020f41166f8e3380bd6d8e8f77c0cd5263dad5d3858d9c9f
@@ -19,6 +19,8 @@ jobs:
19
19
  - gemfiles/rails60.gemfile
20
20
  - gemfiles/rails61.gemfile
21
21
  include:
22
+ - gemfile: gemfiles/rails71.gemfile
23
+ ruby-version: 3.4.1
22
24
  - gemfile: gemfiles/rails71.gemfile
23
25
  ruby-version: 3.2.2
24
26
  - gemfile: gemfiles/rails71.gemfile
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.2.2'
3
+ ruby '3.4.1'
4
4
 
5
5
  source 'https://rubygems.org'
6
6
 
@@ -18,7 +18,11 @@ module Rollbar
18
18
 
19
19
  def to_h
20
20
  # parse the line
21
- match = frame.match(/(.*):(\d+)(?::in `([^']+)')?/)
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
 
@@ -1,3 +1,3 @@
1
1
  module Rollbar
2
- VERSION = '3.6.1'.freeze
2
+ VERSION = '3.6.2'.freeze
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: 3.6.1
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-02-07 00:00:00.000000000 Z
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