raygun-apm 1.0.44-x86-mingw32 → 1.0.45-x86-mingw32

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: 19f5272499cf45c6b620c407e67b2e16f6f6eacf48dffc4b8af3444392ccaeea
4
- data.tar.gz: '0438477c7613d185771b5d34ba78ed12a9851ea82b8a0b1f821cb79b10602cbf'
3
+ metadata.gz: fe5c35d07f5fdb85a97e5ed167f2ef93b79b78011ddff7bc3f6fc978cc80ca11
4
+ data.tar.gz: 6961a65fa00b1d3d952c195c955b84c718c2876dc1db5de080d8c1d853ee8716
5
5
  SHA512:
6
- metadata.gz: 9b4498319486be978651b21bfd567cedcb300948aae7c6c6f0e536521de818a3d438d74d560d4d31a36cb3e92b91e6e655019708150025a524dd4e3d6504ed75
7
- data.tar.gz: 4b9a8ad7f910a7650fc8e27540fc27cc9555d8198818e3353d1db685e65537e44388b72e62b4fedea9160442bfb88a9c87c04de7799b96e19e3d0774d1baf1fc
6
+ metadata.gz: 1d5a6601cfe5b1219dde33e9ea29d96ad6d301e727cbeb0ee746dbe596c7bd16e0eaae97d286b12332fac30b999583a822cca4001809a9ba7811d67560b63ebb
7
+ data.tar.gz: e1082802fbf412e5ca892822b994ee205ee23fe676b54d05dce57055226e021aec57015a23e77f5595ff681e013b047db5aa71d1dc9e19f68c9d43a33acb7e5b
Binary file
Binary file
Binary file
@@ -2,6 +2,7 @@ module Raygun
2
2
  module Apm
3
3
  module Blacklist
4
4
  PROFILER = %w{
5
+ Raygun
5
6
  Raygun::Apm::
6
7
  }
7
8
 
@@ -255,7 +256,7 @@ module Raygun
255
256
  +Redis#shutdown
256
257
  +Redis#slave
257
258
  +Redis#slowlog
258
- #+Redis::sync
259
+ +Redis#sync
259
260
  +Redis#time
260
261
  +Redis#persist
261
262
  +Redis#expire
@@ -430,7 +431,6 @@ module Raygun
430
431
  Raygun.log
431
432
  Raygun.should_report?
432
433
  Raygun::Client
433
- track_exception_sync
434
434
  +Raygun.track_exception
435
435
  }
436
436
 
@@ -2,7 +2,7 @@ module Raygun
2
2
  module Apm
3
3
  module Blacklist
4
4
  class Parser
5
- COMMENT = /^#.*/
5
+ COMMENT = /^#[^<].*/
6
6
  ANONYMOUS = /^#<.*:.*>?/
7
7
 
8
8
  def initialize(tracer)
@@ -31,11 +31,11 @@ module Raygun
31
31
  @tracer.add_blacklist *translate(filter)
32
32
  end
33
33
  rescue => e
34
- puts "Failed to add line '#{filter}' to the blacklist (#{e})"
34
+ puts "Failed to add line '#{filter}' to the blacklist (#{e}) #{e.backtrace.join("\n")}"
35
35
  end
36
36
 
37
37
  def show_filters
38
- @tracer.show_filters if @tracer.config.loglevel == Tracer::LOG_BLACKLIST
38
+ @tracer.show_filters# if @tracer.config.loglevel == Tracer::LOG_BLACKLIST
39
39
  end
40
40
 
41
41
  def translate(filter)
@@ -6,7 +6,7 @@ module Raygun
6
6
  # Foo::Bar#baz
7
7
  # Foo::Bar.baz
8
8
  COMMENT = /^#.*/
9
- ANONYMOUS = /^#<.*:.*>?/
9
+ ANONYMOUS = /^#<.*>?/
10
10
  NAMESPACE = /::/
11
11
  NAMESPACE_ONLY = /::$/
12
12
  METHOD = /#|\./
@@ -1,5 +1,5 @@
1
1
  module Raygun
2
2
  module Apm
3
- VERSION = "1.0.44"
3
+ VERSION = "1.0.45"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raygun-apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.44
4
+ version: 1.0.45
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Raygun
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2020-06-17 00:00:00.000000000 Z
12
+ date: 2020-06-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: debase-ruby_core_source