raygun-apm 0.0.30-x86-linux → 1.0.0-x86-linux

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: 6e31f38e76ef41ffd525bc4a4f458dbdebba11f578e901dd74fb7c31331284f7
4
- data.tar.gz: 302c95505580bf6bb3fcdb5c06228a02028b8a5550a14a4b4f74c48f7b8b2600
3
+ metadata.gz: abc50feab3a4f36b935cb0f5696831f58f96e57a73ed3aff589e0003f6f1dd7f
4
+ data.tar.gz: 5d16aaeaa8ffeede5965a013742605929bd3354800aeca2d1eebb6019f38b308
5
5
  SHA512:
6
- metadata.gz: e5f9b698ad9fa5fb81306ab3fb84be803ccf9b3c4266ece1234365773fb6b14aabe3a3ff7f6692831b15f529e132da837a0a0a25f45983096471adbf40937b4f
7
- data.tar.gz: f884d18bfb4481c29cf04482126e3f495bd5879fcbdf3d005882e71c55daabb070a4df3349d7d40bbb4a73212e4573da9264ddf694d79e5e17800de713a5ec9d
6
+ metadata.gz: d1daf33ea581293838e3c9287e5c72e66010535dc0397cfa2bf94e2b6a2fbbf03ca32cbf10a15284436ce2c33b93446c28be257a1da2e3aefa534edd65f78c52
7
+ data.tar.gz: f064e24b8b0d26eb78eed7b1826511ab6134a3237d36bc09f05c69f0801865f248c4d88a14d51d12ee796f4df28efad37ca30e625bcad456888c2d0298cdbd75
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-linux
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