vivarium_usdt 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d14245f4fb770aa56d82048a05f84d787e948a6654a096c23bb1c7440afd1772
4
+ data.tar.gz: 6ce3ed7d262ca9ec6205ebfba41ccae4e4967137f8860b772288f3b092653b53
5
+ SHA512:
6
+ metadata.gz: f6c6a49d1049e82fa493df243f47e3276ac4f9794ea2cea8268d9ec615ae3217f054c86ebcaecd527ccd2cfa4e4f37c50cba038d19e36af64039c3dcb4c600bb
7
+ data.tar.gz: 6a1b43e9e6d73b8d8a8d7284af024aab78015cef4d3e325f97b7133009d8590c04d592a116a7bac799f2bbe519446b7a210b854d616f3c4b44acafd333555576
data/Cargo.lock ADDED
@@ -0,0 +1,312 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "bindgen"
16
+ version = "0.72.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
19
+ dependencies = [
20
+ "bitflags",
21
+ "cexpr",
22
+ "clang-sys",
23
+ "itertools",
24
+ "proc-macro2",
25
+ "quote",
26
+ "regex",
27
+ "rustc-hash",
28
+ "shlex",
29
+ "syn",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "bitflags"
34
+ version = "2.11.1"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
37
+
38
+ [[package]]
39
+ name = "cexpr"
40
+ version = "0.6.0"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
43
+ dependencies = [
44
+ "nom",
45
+ ]
46
+
47
+ [[package]]
48
+ name = "cfg-if"
49
+ version = "1.0.4"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
52
+
53
+ [[package]]
54
+ name = "clang-sys"
55
+ version = "1.8.1"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
58
+ dependencies = [
59
+ "glob",
60
+ "libc",
61
+ "libloading",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "either"
66
+ version = "1.16.0"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
69
+
70
+ [[package]]
71
+ name = "glob"
72
+ version = "0.3.3"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
75
+
76
+ [[package]]
77
+ name = "itertools"
78
+ version = "0.13.0"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
81
+ dependencies = [
82
+ "either",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "lazy_static"
87
+ version = "1.5.0"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
90
+
91
+ [[package]]
92
+ name = "libc"
93
+ version = "0.2.186"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
96
+
97
+ [[package]]
98
+ name = "libloading"
99
+ version = "0.8.9"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
102
+ dependencies = [
103
+ "cfg-if",
104
+ "windows-link",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "magnus"
109
+ version = "0.8.2"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
112
+ dependencies = [
113
+ "magnus-macros",
114
+ "rb-sys",
115
+ "rb-sys-env",
116
+ "seq-macro",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "magnus-macros"
121
+ version = "0.8.0"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
124
+ dependencies = [
125
+ "proc-macro2",
126
+ "quote",
127
+ "syn",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "memchr"
132
+ version = "2.8.0"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
135
+
136
+ [[package]]
137
+ name = "minimal-lexical"
138
+ version = "0.2.1"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
141
+
142
+ [[package]]
143
+ name = "nom"
144
+ version = "7.1.3"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
147
+ dependencies = [
148
+ "memchr",
149
+ "minimal-lexical",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "probe"
154
+ version = "0.5.2"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "136558b6e1ebaecc92755d0ffaf9421f519531bed30cc2ad23b22cb00965cc5e"
157
+
158
+ [[package]]
159
+ name = "proc-macro2"
160
+ version = "1.0.106"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
163
+ dependencies = [
164
+ "unicode-ident",
165
+ ]
166
+
167
+ [[package]]
168
+ name = "quote"
169
+ version = "1.0.45"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
172
+ dependencies = [
173
+ "proc-macro2",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "rb-sys"
178
+ version = "0.9.128"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
181
+ dependencies = [
182
+ "rb-sys-build",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "rb-sys-build"
187
+ version = "0.9.128"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
190
+ dependencies = [
191
+ "bindgen",
192
+ "lazy_static",
193
+ "proc-macro2",
194
+ "quote",
195
+ "regex",
196
+ "shell-words",
197
+ "syn",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "rb-sys-env"
202
+ version = "0.2.3"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
205
+
206
+ [[package]]
207
+ name = "rb-sys-test-helpers"
208
+ version = "0.2.2"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "d6ccb543252549fc28f5d290322e041cd682bd199a8e1caaa813fb6e63dd221e"
211
+ dependencies = [
212
+ "rb-sys",
213
+ "rb-sys-env",
214
+ "rb-sys-test-helpers-macros",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "rb-sys-test-helpers-macros"
219
+ version = "0.2.2"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "1508caed999cb659ab1b3308e7b2985186b3b550ef5492dc18da71b560c55615"
222
+ dependencies = [
223
+ "quote",
224
+ "syn",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "regex"
229
+ version = "1.12.3"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
232
+ dependencies = [
233
+ "aho-corasick",
234
+ "memchr",
235
+ "regex-automata",
236
+ "regex-syntax",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "regex-automata"
241
+ version = "0.4.14"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
244
+ dependencies = [
245
+ "aho-corasick",
246
+ "memchr",
247
+ "regex-syntax",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "regex-syntax"
252
+ version = "0.8.10"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
255
+
256
+ [[package]]
257
+ name = "rustc-hash"
258
+ version = "2.1.2"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
261
+
262
+ [[package]]
263
+ name = "seq-macro"
264
+ version = "0.3.6"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
267
+
268
+ [[package]]
269
+ name = "shell-words"
270
+ version = "1.1.1"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
273
+
274
+ [[package]]
275
+ name = "shlex"
276
+ version = "1.3.0"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
279
+
280
+ [[package]]
281
+ name = "syn"
282
+ version = "2.0.117"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
285
+ dependencies = [
286
+ "proc-macro2",
287
+ "quote",
288
+ "unicode-ident",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "unicode-ident"
293
+ version = "1.0.24"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
296
+
297
+ [[package]]
298
+ name = "vivarium_usdt"
299
+ version = "0.1.0"
300
+ dependencies = [
301
+ "magnus",
302
+ "probe",
303
+ "rb-sys",
304
+ "rb-sys-env",
305
+ "rb-sys-test-helpers",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "windows-link"
310
+ version = "0.2.1"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
data/Cargo.toml ADDED
@@ -0,0 +1,13 @@
1
+ # This Cargo.toml is here to let externals tools (IDEs, etc.) know that this is
2
+ # a Rust project. Your extensions dependencies should be added to the Cargo.toml
3
+ # in the ext/ directory.
4
+
5
+ [workspace]
6
+ members = ["./ext/vivarium_usdt"]
7
+ resolver = "2"
8
+
9
+ [profile.release]
10
+ # By default, debug symbols are stripped from the final binary which makes it
11
+ # harder to debug if something goes wrong. It's recommended to keep debug
12
+ # symbols in the release build so that you can debug the final binary if needed.
13
+ debug = true
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # VivariumUsdt
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/vivarium_usdt`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ ```bash
14
+ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
15
+ ```
16
+
17
+ If bundler is not being used to manage dependencies, install the gem by executing:
18
+
19
+ ```bash
20
+ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
21
+ ```
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/vivarium_usdt.
data/Rakefile ADDED
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rake/testtask"
5
+
6
+ Rake::TestTask.new(:test) do |t|
7
+ t.libs << "test"
8
+ t.libs << "lib"
9
+ t.test_files = FileList["test/**/*_test.rb"]
10
+ end
11
+
12
+ require "rb_sys/extensiontask"
13
+
14
+ task build: :compile
15
+
16
+ GEMSPEC = Gem::Specification.load("vivarium_usdt.gemspec")
17
+
18
+ RbSys::ExtensionTask.new("vivarium_usdt", GEMSPEC) do |ext|
19
+ ext.lib_dir = "lib/vivarium_usdt"
20
+ end
21
+
22
+ task default: %i[compile test]
@@ -0,0 +1,22 @@
1
+ [package]
2
+ name = "vivarium_usdt"
3
+ version = "0.1.0"
4
+ edition = "2021"
5
+ authors = ["Uchio Kondo <udzura@udzura.jp>"]
6
+ publish = false
7
+
8
+ [lib]
9
+ crate-type = ["cdylib"]
10
+
11
+ [dependencies]
12
+ magnus = { version = "0.8.2" }
13
+ rb-sys = { version = "0.9", features = ["stable-api-compiled-fallback"] }
14
+
15
+ [target.'cfg(target_os = "linux")'.dependencies]
16
+ probe = "0.5.2"
17
+
18
+ [build-dependencies]
19
+ rb-sys-env = "0.2.2"
20
+
21
+ [dev-dependencies]
22
+ rb-sys-test-helpers = { version = "0.2.2" }
@@ -0,0 +1,5 @@
1
+ pub fn main() -> Result<(), Box<dyn std::error::Error>> {
2
+ let _ = rb_sys_env::activate()?;
3
+
4
+ Ok(())
5
+ }
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "mkmf"
4
+ require "rb_sys/mkmf"
5
+
6
+ create_rust_makefile("vivarium_usdt/vivarium_usdt")
@@ -0,0 +1,64 @@
1
+ #![allow(unused)]
2
+ use magnus::{function, prelude::*, Error, Ruby};
3
+
4
+ #[magnus::init]
5
+ fn init(ruby: &Ruby) -> Result<(), Error> {
6
+ let module = ruby.define_module("VivariumUsdt")?;
7
+ module.define_singleton_method("invoke_start_probe", function!(invoke_start_probe, 1))?;
8
+ module.define_singleton_method("invoke_stop_probe", function!(invoke_stop_probe, 1))?;
9
+ module.define_singleton_method("invoke_raise_probe", function!(invoke_raise_probe, 1))?;
10
+
11
+ let kernel = ruby.module_kernel();
12
+ kernel.define_method(
13
+ "__helper_get_hash_from_name",
14
+ function!(__helper_get_hash_from_name, 1),
15
+ )?;
16
+ Ok(())
17
+ }
18
+
19
+ pub(crate) fn invoke_start_probe(method_id: i64) -> Result<(), Error> {
20
+ #[cfg(target_os = "linux")]
21
+ {
22
+ use probe::probe;
23
+ probe::probe!(vivarium_usdt, start_probe, method_id);
24
+ }
25
+ Ok(())
26
+ }
27
+
28
+ pub(crate) fn invoke_stop_probe(method_id: i64) -> Result<(), Error> {
29
+ #[cfg(target_os = "linux")]
30
+ {
31
+ use probe::probe;
32
+ probe::probe!(vivarium_usdt, stop_probe, method_id);
33
+ }
34
+ Ok(())
35
+ }
36
+
37
+ pub(crate) fn invoke_raise_probe(error_id: i64) -> Result<(), Error> {
38
+ #[cfg(target_os = "linux")]
39
+ {
40
+ use probe::probe;
41
+ probe::probe!(vivarium_usdt, raise_probe, error_id);
42
+ }
43
+ Ok(())
44
+ }
45
+
46
+ pub(crate) fn __helper_get_hash_from_name(name: String) -> Result<i64, Error> {
47
+ use std::collections::hash_map::DefaultHasher;
48
+ use std::hash::{Hash, Hasher};
49
+
50
+ let mut hasher = DefaultHasher::new();
51
+ name.hash(&mut hasher);
52
+ let hash = hasher.finish() as i64;
53
+ Ok(hash)
54
+ }
55
+
56
+ #[cfg(test)]
57
+ mod tests {
58
+ use rb_sys_test_helpers::ruby_test;
59
+
60
+ #[ruby_test]
61
+ fn test_hello() {
62
+ assert!(true);
63
+ }
64
+ }
@@ -0,0 +1,48 @@
1
+ require "vivarium_usdt/vivarium_usdt"
2
+
3
+ module Vivarium
4
+ module Usdt
5
+ class << self
6
+ def __method_id_table
7
+ @__method_id_table ||= {}
8
+ end
9
+ private :__method_id_table
10
+ def __error_id_table
11
+ @__error_id_table ||= {}
12
+ end
13
+ private :__error_id_table
14
+
15
+ def get_method_name(u64)
16
+ __method_id_table[u64]
17
+ end
18
+
19
+ def get_error_name(u64)
20
+ __error_id_table[u64]
21
+ end
22
+
23
+ def register_or_resolve_method(method_signature)
24
+ id = __helper_get_hash_from_name(method_signature)
25
+ __method_id_table[id] ||= method_signature
26
+ id
27
+ end
28
+
29
+ def start(defined_class, method_name)
30
+ method_signature = "#{defined_class}##{method_name}"
31
+ method_id = register_or_resolve_method(method_signature)
32
+ ::VivariumUsdt.invoke_start_probe(method_id)
33
+ end
34
+
35
+ def stop(defined_class, method_name)
36
+ method_signature = "#{defined_class}##{method_name}"
37
+ method_id = register_or_resolve_method(method_signature)
38
+ ::VivariumUsdt.invoke_stop_probe(method_id)
39
+ end
40
+
41
+ def raise(error_name)
42
+ error_id = __helper_get_hash_from_name(error_name)
43
+ __error_id_table[error_id] ||= error_name
44
+ ::VivariumUsdt.invoke_raise_probe(error_id)
45
+ end
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Vivarium
4
+ module Usdt
5
+ VERSION = "0.1.0"
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "vivarium/usdt_version"
4
+ require "vivarium/usdt"
@@ -0,0 +1,4 @@
1
+ module VivariumUsdt
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,69 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vivarium_usdt
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Uchio Kondo
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: rb_sys
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: 0.9.91
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: 0.9.91
26
+ description: This gem provides a helper for Vivarium to send USDT (User-level Statically
27
+ Defined Tracing) events for method start and stop.
28
+ email:
29
+ - udzura@udzura.jp
30
+ executables: []
31
+ extensions:
32
+ - ext/vivarium_usdt/extconf.rb
33
+ extra_rdoc_files: []
34
+ files:
35
+ - Cargo.lock
36
+ - Cargo.toml
37
+ - README.md
38
+ - Rakefile
39
+ - ext/vivarium_usdt/Cargo.toml
40
+ - ext/vivarium_usdt/build.rs
41
+ - ext/vivarium_usdt/extconf.rb
42
+ - ext/vivarium_usdt/src/lib.rs
43
+ - lib/vivarium/usdt.rb
44
+ - lib/vivarium/usdt_version.rb
45
+ - lib/vivarium_usdt.rb
46
+ - sig/vivarium_usdt.rbs
47
+ homepage: https://github.com/udzura/vivarium_usdt
48
+ licenses: []
49
+ metadata:
50
+ homepage_uri: https://github.com/udzura/vivarium_usdt
51
+ source_code_uri: https://github.com/udzura/vivarium_usdt
52
+ rdoc_options: []
53
+ require_paths:
54
+ - lib
55
+ required_ruby_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: 3.4.0
60
+ required_rubygems_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: '0'
65
+ requirements: []
66
+ rubygems_version: 4.0.10
67
+ specification_version: 4
68
+ summary: USDT helper gem for Vivarium to send method start/stop events
69
+ test_files: []