raygun-apm 1.0.60-x86-linux → 1.0.65-x86-linux

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: 461d36e9c44e0a3510d0adc229c6b9e2793c2825973175e85419c630cf477233
4
- data.tar.gz: 94d9fec44f0a0a223a6d70b3e1e49d6468900c4a699583a3c84766f79d79ee94
3
+ metadata.gz: eacfe8915fe8f4063729adb95b9b9208ae26eb6d317662f043d81365e0616964
4
+ data.tar.gz: f2da0dce6d708e0fc03453943a36060b87c08bf727531905c65ef3f861c75ee3
5
5
  SHA512:
6
- metadata.gz: e2b558a9dd24b7b948a3ad8cbe9f8064f5e73d1818a9db84a3ff3ece3c6d91b1d853582f018ae944fc2151aabedffacb525298f5bf8a6d04c8338f20fb42eb55
7
- data.tar.gz: b05dcc63be471e4d29db62b40de232fa9716de7faae5b6ede1c47f889201b193054c6dd754bb86edbb877553dd9c72cc699803150f63ce4280787b6cdf4c745b
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.60"
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.60
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-02 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