influx_reporter 1.2.3 → 1.2.5

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: 04ee666c90d3911ad99eea3d9259118170c791b4137efaa2fa588b83cc33e61b
4
- data.tar.gz: 6902f423ae48a616ab4cc1da244dce4b6b3dbb407db53674a16f5c5e82d6083c
3
+ metadata.gz: 1f87cd008e224d8dcd8434af3bbfeff7cdb08aa37dd97b10c3a7e08e320af6b1
4
+ data.tar.gz: 90eb3cb6331033b160be4b44712cfe751041379c4f43cf7fa97c3bee2e813fca
5
5
  SHA512:
6
- metadata.gz: 7e5c2a857d5d8bb546902fe48c617f00ddd0586fffacb0437d1ea62d53abbcc2810508afbe5be361ec8bf77b24a2fcfdc1129f45046eb7914ac6f8f7d756de4b
7
- data.tar.gz: d9c02cdd2ca1720630bbdcb653ee4447677a2723daea642435c6d2113a39bad061d687a3fded62deb3e6632a2a0338b0077d3bbfaef4d600ed09c3c898f410ca
6
+ metadata.gz: 4139505a96a757ca378a8d808e3d273655781d12bfcda2fc7ea280915d0d8a9ace673f7a6bb888780f63d5853138b641a4568cec96ec19ff7e270b9fcc343ef0
7
+ data.tar.gz: ff681b653963e86a20ed9a33954f839230ec5f6fb4ac9bc897f2f7890330974b38ea9d0f98cfe4330bfe4011c1575cda173c7adbe4ab7d72332087b6b2414314
@@ -2,4 +2,4 @@ eval_gemfile File.expand_path('../Gemfile.base', __FILE__)
2
2
 
3
3
  gem 'rails', '~> 6.1.0'
4
4
  gem 'tzinfo-data'
5
- gem 'sinatra'
5
+ gem 'sinatra', '< 3.0'
@@ -0,0 +1,5 @@
1
+ eval_gemfile File.expand_path('../Gemfile.base', __FILE__)
2
+
3
+ gem 'rails', '~> 8.0.0'
4
+ gem 'tzinfo-data'
5
+ gem 'sinatra', '<3.0';
@@ -27,7 +27,7 @@ module InfluxReporter
27
27
  class Frame < Struct.new(:filename, :lineno, :abs_path, :function, :vars,
28
28
  :pre_context, :context_line, :post_context)
29
29
 
30
- BACKTRACE_REGEX = /^(.+?):(\d+)(?::in `(.+?)')?$/
30
+ BACKTRACE_REGEX = /^(.+?):(\d+)(?::in ['`"](.+?)[`'"])?$/
31
31
 
32
32
  class << self
33
33
  def from_line(config, line)
@@ -85,9 +85,5 @@ module ::Kernel
85
85
  end
86
86
 
87
87
  res
88
- rescue Exception => e
89
- puts "Error requiring #{name}: #{e.message}"
90
- puts e.backtrace.join("\n")
91
- raise e
92
88
  end
93
89
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module InfluxReporter
4
- VERSION = '1.2.3'
4
+ VERSION = '1.2.5'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: influx_reporter
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kacper Kawecki
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-13 00:00:00.000000000 Z
11
+ date: 2025-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -79,6 +79,7 @@ files:
79
79
  - gemfiles/Gemfile.rails-5.0.x
80
80
  - gemfiles/Gemfile.rails-6.0.x
81
81
  - gemfiles/Gemfile.rails-7.1.x
82
+ - gemfiles/Gemfile.rails-8.0.x
82
83
  - gemfiles/Gemfile.rails-HEAD
83
84
  - influx_reporter.gemspec
84
85
  - lib/influx_reporter.rb