raygun-apm 0.0.30-x86-mingw32 → 1.0.0-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: 5b675011716eaec6ec4a7970c9fc37544fb4a23b44031a95eee259e0b6474eb7
4
- data.tar.gz: af4d85b27511c81386d6f03307e15b3a07b9c91ed307c8299d02184446d40f2a
3
+ metadata.gz: 8139bd5de52c7027f819ccfbecb3849ddc0d46fdeab6689116f687426c5d1c90
4
+ data.tar.gz: 7f00e9a7a3f74804123c5862c4d4a0949e8242d78087a4066bfeeecdfe753638
5
5
  SHA512:
6
- metadata.gz: 3dabf2227ef7410c66a6ee2af1ff7c9e8064e2136a4d28b4947060ee049727aad4a4b99ad18f82783a17fb241f1bceae868c14e59b785ec6744b956b8382713e
7
- data.tar.gz: 1f4f4a24a6bd0319d71004e50f1c1138d51358184ec07b2baaab1c6de9afb7b8aff0e041bcc3ac0d2662931c090ba4a3c2de9df6bf1004f3c892fa3ff4884c8a
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 (Preview release, still officially unreleased, but supported)
22
+ * 2.7.x
23
23
 
24
24
  {Contact us}[https://raygun.com/about/contact] to support other Ruby versions.
25
25
 
@@ -30,6 +30,10 @@ else
30
30
  append_cflags '-O3'
31
31
  end
32
32
 
33
+ if ENV['DEBUG_SHADOW_STACK']
34
+ append_cflags '-DRB_RG_DEBUG_SHADOW_STACK'
35
+ end
36
+
33
37
  unless create_header
34
38
  STDERR.print("extconf.h creation failed\n")
35
39
  exit(1)
Binary file
Binary file
Binary file
@@ -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
@@ -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]}"
@@ -1,5 +1,5 @@
1
1
  module Raygun
2
2
  module Apm
3
- VERSION = "0.0.30"
3
+ VERSION = "1.0.0"
4
4
  end
5
5
  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: 0.0.30
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-01-30 00:00:00.000000000 Z
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