raygun-apm 1.0.64-x86-linux → 1.0.65-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: 5514fa23c253c26a83ad2d1cb44b7f197ac542cad4fc81ba87269471e8f35ab8
4
- data.tar.gz: 693ca2b70d3a8aecc88f0973c1ddc3fb42c2599fff0b964a44bd086a2fc7c6a6
3
+ metadata.gz: eacfe8915fe8f4063729adb95b9b9208ae26eb6d317662f043d81365e0616964
4
+ data.tar.gz: f2da0dce6d708e0fc03453943a36060b87c08bf727531905c65ef3f861c75ee3
5
5
  SHA512:
6
- metadata.gz: 9f7a75debffc1991886316a6d655c21b41d071023918aeabbf826f8338d7fda57cc8d44c2eb09addf5cf7ec0ef54fc3776f68e8398d1a788a35f7e2359a9dfa4
7
- data.tar.gz: 15f587856ece10c16eb2ab768c2c4cd5b403b1301d591d507794186ab389c846064154b3235ac9862f59a124c32758256d4dfcbb7d6c699bf179bb54921cfe1a
6
+ metadata.gz: 3010593ed44d545c04b54daa93b2383bacef9aade76e66822c92729bda0a2e02ae9c4845f7f367d5b2fa906fef5476d62744a1f03f268398b982be5c9f2b013b
7
+ data.tar.gz: 5e31e4337494bb8e8ec4327945e745c2c7a427d4913a127e8e9b18e5a4a3b8be8e1827ba90f652400b4d0d93c02fa73b24a88b8ebd50a1c8fe78a2edf7980b02
Binary file
Binary file
Binary file
@@ -66,6 +66,10 @@ module Raygun
66
66
  Method#
67
67
  Module#
68
68
  Mutex#
69
+ +Thread::Mutex#synchronize
70
+ +Thread::Mutex#lock
71
+ +Thread::Mutex#unlock
72
+ +Thread::Mutex#sleep
69
73
  NameError#
70
74
  NilClass#
71
75
  NoMemoryError#
@@ -1,3 +1,5 @@
1
+ require 'thread'
2
+
1
3
  module Raygun
2
4
  module Apm
3
5
  module Hooks
@@ -64,6 +66,24 @@ module Raygun
64
66
  super
65
67
  end
66
68
  end
69
+
70
+ module Mutex
71
+ def synchronize(*args)
72
+ super
73
+ end
74
+
75
+ def lock(*args)
76
+ super
77
+ end
78
+
79
+ def unlock(*args)
80
+ super
81
+ end
82
+
83
+ def sleep(*args)
84
+ super
85
+ end
86
+ end
67
87
  end
68
88
  end
69
89
  end
@@ -71,4 +91,5 @@ end
71
91
  Object.prepend Raygun::Apm::Hooks::Object
72
92
  IO.prepend Raygun::Apm::Hooks::IO
73
93
  Random.prepend Raygun::Apm::Hooks::Random
74
- Signal.prepend Raygun::Apm::Hooks::Signal
94
+ Signal.prepend Raygun::Apm::Hooks::Signal
95
+ Thread::Mutex.prepend Raygun::Apm::Hooks::Mutex
@@ -1,6 +1,6 @@
1
1
  module Raygun
2
2
  module Apm
3
- VERSION = "1.0.64"
3
+ VERSION = "1.0.65"
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.64
4
+ version: 1.0.65
5
5
  platform: x86-linux
6
6
  authors:
7
7
  - Raygun
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2020-08-03 00:00:00.000000000 Z
12
+ date: 2020-08-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: debase-ruby_core_source