raygun-apm 0.0.30-x86-mingw32 → 1.0.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- 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: 8139bd5de52c7027f819ccfbecb3849ddc0d46fdeab6689116f687426c5d1c90
|
4
|
+
data.tar.gz: 7f00e9a7a3f74804123c5862c4d4a0949e8242d78087a4066bfeeecdfe753638
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f05a45beff934dd7989a287fe80ac9a3fa1b24a54e9ff93b84a47f619a9a3679494d96190c8afa07e00996aebbebeae0e03b0e22f05d19b68b9e464a5228b87a
|
7
|
+
data.tar.gz: 4455037b1ae4c247999e67a714c604b421169af46d6fd6a16086c1b3d925b5131d55d645e8a3dba5fe27f43364a633d6c66a3a0d9aca677adead443460869862
|
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: x86-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
|