raygun-apm 0.0.30-x64-mingw32 → 1.0.0-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fbdce0e1de0901c78820af3e2cc8b72aacf155fa0c8fc36654817a4faf20f2bf
4
- data.tar.gz: ca121a4b63083f1eae8dc74c39e075db01fbf08007b6815cc3c714f57036aeba
3
+ metadata.gz: da64d426f8383f36f453b02e6a941f5a3da6054ea1c32b0e14b09a3fd4dda98f
4
+ data.tar.gz: 90c87a46d2005b0d725e6638d607a6f3d8c93f4c692033c726505fc81cfc15a7
5
5
  SHA512:
6
- metadata.gz: effc8c06f8588250842368de743e4d8821849654db16e4ec4066ba39c1a0dece1d434770040a04a84eff25a78595236bcd697aa4fd0f375bdc8dd5fc9095bc89
7
- data.tar.gz: 950db68b751c0394e055be69d37f3fe43d1419de3066c71715ce6bf5b723c5b930c3b54aafc6b9679d4540fdad9cae04b736a1c942ae1fadb831c46744cf6a0b
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 (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: x64-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