raygun-apm 1.1.3-x86-mingw32 → 1.1.7-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: 805bbcdc4ca10bfb1e53de14991851e39880ff055967dc0e92ce5893dba8f5d0
4
- data.tar.gz: 622b10d62cb84dd22fecf187729ab8154d5430fda378bc12c7aa207e3ec6b75d
3
+ metadata.gz: 29e8e377761e753e50347d53749248b14c4a539aa87ab7662386b4d3d7a3fcc9
4
+ data.tar.gz: b4c1c81c187ee960300f4189ca87250cf436a2687898034d2cd5a0f8ea4e5efb
5
5
  SHA512:
6
- metadata.gz: 8b32d0a58fe201c0fa82dcca8aaf97a4aecd766b743f8e5c6223b60b1536e0166c4dd56358dabee989be9f08c2bd34d2d16f6a1d35e49c78bd1b11cd3f7cda9b
7
- data.tar.gz: 5fe11ccb32a220a53357f99392e9737258cb716079340d0494373cc4643f02f0852a3965f0ee8b37da4a041764344aa9feb7828f665decc5957d489c97b79f88
6
+ metadata.gz: 53ea73516911265d938061c9c8e6b727928ef6c23df7e32f28304b1bd15b7f8fb1b1d5b28d239f7c3a5b7fd5c335c4aea4769d52bbd819a476f0abb6b0674022
7
+ data.tar.gz: 823f337f7f87639d07cc8b8f37e4d0bc12e858e02c76dc381e614e38377eef8116960b258e3a431644d6d75590330c80c860f898d1ad188100eb5249f642d810
Binary file
Binary file
Binary file
Binary file
@@ -27,6 +27,8 @@ module Raygun
27
27
  @tracer.add_whitelist *translate(filter[1..-1])
28
28
  elsif filter.start_with?('-')
29
29
  @tracer.add_blacklist *translate(filter[1..-1])
30
+ elsif filter.start_with?('L-')
31
+ @tracer.add_blacklist *translate(filter[2..-1])
30
32
  elsif filter.size > 0
31
33
  @tracer.add_blacklist *translate(filter)
32
34
  end
@@ -5,12 +5,14 @@ module Raygun
5
5
  class RubyTranslator
6
6
  # Foo::Bar#baz
7
7
  # Foo::Bar.baz
8
+ # Foo::Bar::baz
8
9
  COMMENT = /^#.*/
9
10
  ANONYMOUS = /^#<.*>?/
10
11
  NAMESPACE = /::/
11
12
  NAMESPACE_ONLY = /::$/
12
13
  METHOD = /#|\./
13
14
  LETTER_CASE = /^[A-Z]/
15
+ LOWER_CASE = /^[a-z]/
14
16
 
15
17
  def translate(filter)
16
18
  path, method = nil, nil
@@ -29,6 +31,10 @@ module Raygun
29
31
 
30
32
  # .NET fallback
31
33
  return if method =~ NAMESPACE
34
+ if path && (_method = path.split(NAMESPACE).last) =~ LOWER_CASE
35
+ method = _method
36
+ path.gsub!(Regexp.compile("::#{method}$"), "")
37
+ end
32
38
  [path, method]
33
39
  elsif filter =~ ANONYMOUS
34
40
  _, klass, method = filter.split(METHOD)
@@ -1,6 +1,6 @@
1
1
  module Raygun
2
2
  module Apm
3
- VERSION = "1.1.3"
3
+ VERSION = "1.1.7"
4
4
  MINIMUM_AGENT_VERSION = "1.0.1190.0"
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raygun-apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.7
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Raygun Limited
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-16 00:00:00.000000000 Z
11
+ date: 2022-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: debase-ruby_core_source