raygun-apm 0.0.30-universal-darwin → 1.0.0-universal-darwin

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: f17ce66e084472b07d77c5c788e18f16bffb00c01fa338d28bdb24b1da389d2f
4
- data.tar.gz: f54b157eadc3aab722df32ac47264297ee4d0cf4ff9524ddf372b46c0c5fbe79
3
+ metadata.gz: 368c69a8fc6aa40c800a336f56c89b3c77bdeee8df45d5e80a66817107dd45b4
4
+ data.tar.gz: fab935ca6ab8930a3c0a19ea62bca4841544b2fb1d80eebb400723bf1ae5ed41
5
5
  SHA512:
6
- metadata.gz: 36370b8a72f2c2b0f21238936edcc0bd11980f966c743dfd4ebc2f8acbf087241fecfb7b70dcc65af3a85a01e4426f0d0c28c3515c502e06bb37ea915f4b4a4e
7
- data.tar.gz: 81c598d1f46a985fb1a46d5ed2e962f482faca6d7515fdd00894ef2ae8461b3c0fa751926a62d01b2073e2a066cbb0a62aad51813ea136ad690f248261d9ddbe
6
+ metadata.gz: ed93dcdb6138d3f0e93b57971ecc57a177eb6d9a2c4305c07e061ad0d236c8da5f55ed10472bd5bddef0a868468b1b0907bc776a08d45fb8c66a6e6168e1e0c8
7
+ data.tar.gz: 1c03dca53c5f64185f4760e1fedcd3ae6a15c659f5e80069503689f51b4af056728813787a12964376a9e2a410dbde98a2dd5d0bbb1426525f3ca97d1972d3a7
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: universal-darwin
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