raygun-apm 1.0.72-x64-mingw32 → 1.0.73-x64-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: ece7dac14b66dffc5d980876f9010afd6177c26c2d8d0685e0745b0a7384ec12
4
- data.tar.gz: 385cc9b2d1109a6725e27cc811f3c63b904f8bedb1a743daaa45ad2885c8017b
3
+ metadata.gz: 4b2e29eaf8f4aca3e28fdf646d5616790f951ae9809079e925ddf5da25c769cd
4
+ data.tar.gz: 34e63170425807ebb05e190e4d3a8b655a37986da349e66b2bc6e942f67f8c2e
5
5
  SHA512:
6
- metadata.gz: 97e994a2dae656929dc8e4740022202a257a37ce34b6bb8e7aad9a8f3fca87831b98af604f0c6897b55c60b69b2401b59f00f876bea38abefa6f7188587775aa
7
- data.tar.gz: 0ecdf5bfa6024df7ec2e428f63d959d7bca25bda3d07fbc853618c0efd4e897de8e8b764e7b9b5a7db45f916ab13857f659ba5c0eae08335924466f6eb712ec7
6
+ metadata.gz: 67e7c5fb237fb131a9cac7f0e6bbf09a7f9c6a5a2fd2338baf597bd397e50125f94be287c4e055b913c8aff0386e438fe1ea5c4c64b7045c55c040785e9552a7
7
+ data.tar.gz: d7b3f99086baacedda14fa382da91aa3e5afcb4d93d1f380c6901470bb80b82ebfab1ad4d1e061d521e8d0ebf5728adc7dab899656b7ce5792b92453cabdd80e
@@ -1,6 +1,8 @@
1
1
  # encoding: utf-8
2
2
 
3
+ # Makefile generator helper - from standard library
3
4
  require 'mkmf'
5
+ # References core headers extracted by Ruby minor version in https://github.com/os97673/debase-ruby_core_source . Required for some of the lower level profiler features
4
6
  require 'debase/ruby_core_source'
5
7
 
6
8
  headers = proc do
@@ -11,12 +13,15 @@ end
11
13
 
12
14
  dir_config('raygun')
13
15
 
16
+ # To allow for swapping out the compiler - clang in favour of gcc for example
14
17
  RbConfig::MAKEFILE_CONFIG['CC'] = ENV['CC'] if ENV['CC']
15
18
 
19
+ # Pendatic about all the things
16
20
  append_cflags '-pedantic'
17
21
  append_cflags '-Wall'
18
22
  append_cflags '-Werror=switch'
19
23
  append_cflags '-std=c99'
24
+ # Enables additional flags, stack protection and debug symbols
20
25
  if ENV['DEBUG']
21
26
  have_library 'ssp'
22
27
  have_func '__stack_chk_guard'
@@ -33,6 +38,7 @@ else
33
38
  append_cflags '-O3'
34
39
  end
35
40
 
41
+ # Renders an ASCII presentation of the shadow stack at runtime
36
42
  if ENV['DEBUG_SHADOW_STACK']
37
43
  append_cflags '-DRB_RG_DEBUG_SHADOW_STACK'
38
44
  end
@@ -42,6 +48,7 @@ unless create_header
42
48
  exit(1)
43
49
  end
44
50
 
51
+ # Check for the presence of headers in ruby_core_headers for the version currently compiled for
45
52
  unless Debase::RubyCoreSource.create_makefile_with_core(headers, 'raygun_ext')
46
53
  STDERR.print("Makefile creation failed\n")
47
54
  STDERR.print("One or more ruby headers not found\n")
Binary file
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  module Raygun
2
2
  module Apm
3
- VERSION = "1.0.72"
3
+ VERSION = "1.0.73"
4
4
  MINIMUM_AGENT_VERSION = "1.0.1190.0"
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: raygun-apm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.72
4
+ version: 1.0.73
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Raygun
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-09-30 00:00:00.000000000 Z
12
+ date: 2020-10-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: debase-ruby_core_source