raygun-apm 0.0.30-x64-mingw32 → 1.0.0-x64-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 +4 -4
- data/README.rdoc +1 -1
- data/ext/raygun/extconf.rb +4 -0
- data/lib/raygun/2.5/raygun_ext.so +0 -0
- data/lib/raygun/2.6/raygun_ext.so +0 -0
- data/lib/raygun/2.7/raygun_ext.so +0 -0
- data/lib/raygun/apm/blacklist.rb +5 -0
- data/lib/raygun/apm/event.rb +5 -0
- data/lib/raygun/apm/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da64d426f8383f36f453b02e6a941f5a3da6054ea1c32b0e14b09a3fd4dda98f
|
4
|
+
data.tar.gz: 90c87a46d2005b0d725e6638d607a6f3d8c93f4c692033c726505fc81cfc15a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 542e8d0559f4cb9d38f73f4e9d7b51c98cfb0c00c08713fc7b4905a6ef34ce24a6d4f7dc82fdb132e0bfb5b82eb72df5c7516c9b2850c7267a6711d20d7151c7
|
7
|
+
data.tar.gz: 81ff82edba19ecc782d6ba800f3859f5d30f8b6466d9298f9654be693b96bd14ee4ed7547ad424a619dca41b5db1f19496533311006c5a37b75179efbc7e6c49
|
data/README.rdoc
CHANGED
@@ -19,7 +19,7 @@ The profiler only supports CRuby, also known as Matz's Ruby Interpreter (MRI).
|
|
19
19
|
|
20
20
|
* 2.5.x
|
21
21
|
* 2.6.x
|
22
|
-
* 2.7.x
|
22
|
+
* 2.7.x
|
23
23
|
|
24
24
|
{Contact us}[https://raygun.com/about/contact] to support other Ruby versions.
|
25
25
|
|
data/ext/raygun/extconf.rb
CHANGED
Binary file
|
Binary file
|
Binary file
|
data/lib/raygun/apm/blacklist.rb
CHANGED
@@ -7,9 +7,13 @@ module Raygun
|
|
7
7
|
|
8
8
|
# From https://ruby-doc.org/core-2.6.3/ , to automate
|
9
9
|
DEFAULT_RUBY = %w{
|
10
|
+
#<refinement:
|
11
|
+
#<Module:
|
12
|
+
#<Class:
|
10
13
|
ARGF
|
11
14
|
ArgumentError
|
12
15
|
Array
|
16
|
+
Base64
|
13
17
|
BasicObject
|
14
18
|
Binding
|
15
19
|
Class
|
@@ -64,6 +68,7 @@ module Raygun
|
|
64
68
|
IndexError
|
65
69
|
Integer
|
66
70
|
Interrupt
|
71
|
+
JSON
|
67
72
|
Kernel
|
68
73
|
KeyError
|
69
74
|
LoadError
|
data/lib/raygun/apm/event.rb
CHANGED
@@ -14,6 +14,11 @@ module Raygun
|
|
14
14
|
super + " function_id:#{self[:function_id]} instance_id:#{self[:instance_id]}"
|
15
15
|
end
|
16
16
|
end
|
17
|
+
class End < Event
|
18
|
+
def inspect
|
19
|
+
super + " function_id:#{self[:function_id]}"
|
20
|
+
end
|
21
|
+
end
|
17
22
|
class Methodinfo < Event
|
18
23
|
def inspect
|
19
24
|
super + " function_id:#{self[:function_id]} class_name:#{self[:class_name]} method_name:#{self[:method_name]}"
|
data/lib/raygun/apm/version.rb
CHANGED
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: 0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: x64-mingw32
|
6
6
|
authors:
|
7
7
|
- Erkki Eilonen
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-02-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: debase-ruby_core_source
|