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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d1721c6b5e557cff0a0ddc98b068e7ce4026332d59f3de679ac0dddbe0c4199
4
- data.tar.gz: 5863f686509bc77b0756f268cfc280fabeb00da1eacb8cd4bc9647f7cc57088b
3
+ metadata.gz: 8ce847d9d203df98cce383ce6b2c3a7cc705faae99dea73708ad26db4d7cff36
4
+ data.tar.gz: cee1a877098dc3b1aa6348673621fe0b8825620604da61116d0666537734c1f6
5
5
  SHA512:
6
- metadata.gz: ce2ec0e2f6fbd82f0b6b1a362a9f3c27d5d6b41acd17b716fb7731b2c0e36ef74bed289ad2c266d69c7f24aba78cd818d79ae37d79dad6bf8f7ada53b00f9ef0
7
- data.tar.gz: 9b32084364e461fc7eb1ca9fd8b31fae0928298ed7da14a2688608d80a4502cf08b13190139275f4d39b0cb8fd2a5dce4ab35ba528d2c0a414ddfb561bf32670
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/.rubocop.yml CHANGED
@@ -156,8 +156,6 @@ Performance/InefficientHashSearch:
156
156
 
157
157
  Performance/OpenStruct:
158
158
  Enabled: true
159
- Exclude:
160
- - spec/**/*
161
159
 
162
160
  Performance/RangeInclude:
163
161
  Enabled: true
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
 
@@ -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
@@ -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
- # We need last sinatra that uses rack 2.1.x
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
@@ -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'
@@ -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'
@@ -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'
@@ -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'
@@ -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'
@@ -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
 
@@ -9,7 +9,6 @@ require 'rollbar/delay/thread'
9
9
  require 'rollbar/logger_proxy'
10
10
  require 'rollbar/item'
11
11
  require 'rollbar/notifier/trace_with_bindings'
12
- require 'ostruct'
13
12
 
14
13
  module Rollbar
15
14
  # The notifier class. It has the core functionality
@@ -1,3 +1,3 @@
1
1
  module Rollbar
2
- VERSION = '3.6.0'.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.0
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: 2024-08-30 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