perb 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +4 -4
- data/ext/perb/Cargo.lock +4 -4
- data/ext/perb/Cargo.toml +1 -1
- data/lib/perb/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0fb76541355fc902835ad93d741308842b5584144792c28dfa8eb4469e31cddd
|
4
|
+
data.tar.gz: b62d38a2b288de14cf358d6e9c641a20adf22a09916e421e9b349a7ba42b6a03
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f97bad10720d07a8589988f6e1f42a43213b048094043d5e483ff002d74454d11f14dd6a5f8f552206b36f65e4546311735301be5d5dfbd66529bd5f980211c
|
7
|
+
data.tar.gz: 6e0940843ed723f4db6845b596f6014268adeabc1e1727f766255b1cb234da95995bcb6304ed33eab71658823de95535ac9ebcf2c36d0035642313a9744c03cb
|
data/Gemfile.lock
CHANGED
@@ -3,7 +3,7 @@ PATH
|
|
3
3
|
specs:
|
4
4
|
perb (0.1.0)
|
5
5
|
parser (~> 3.1)
|
6
|
-
rb_sys (~> 0.9.
|
6
|
+
rb_sys (~> 0.9.53)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
@@ -20,7 +20,7 @@ GEM
|
|
20
20
|
rake (13.0.6)
|
21
21
|
rake-compiler (1.2.1)
|
22
22
|
rake
|
23
|
-
rb_sys (0.9.
|
23
|
+
rb_sys (0.9.53)
|
24
24
|
regexp_parser (2.6.1)
|
25
25
|
rexml (3.2.5)
|
26
26
|
rubocop (1.40.0)
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Perb
|
2
2
|
|
3
|
-
|
3
|
+
`perb` automatically instruments your methods such that they show up when a ruby executable gets profiled with perf. it works by
|
4
4
|
wrapping all methods with:
|
5
5
|
|
6
6
|
```ruby
|
@@ -50,7 +50,7 @@ want to be able to profile. See `bin/perf_test` as an example. Then you can just
|
|
50
50
|
perf record -g <your-ruby-executable>
|
51
51
|
```
|
52
52
|
|
53
|
-
and you should be able to profile native and ruby code with one
|
53
|
+
and you should be able to profile native and ruby code with one profiler (perf).
|
54
54
|
|
55
55
|
## Caveats
|
56
56
|
|
@@ -72,7 +72,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
72
72
|
|
73
73
|
## Contributing
|
74
74
|
|
75
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
75
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/Maaarcocr/perb. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/Maaarcocr/perb/blob/master/CODE_OF_CONDUCT.md).
|
76
76
|
|
77
77
|
## License
|
78
78
|
|
@@ -80,4 +80,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
80
80
|
|
81
81
|
## Code of Conduct
|
82
82
|
|
83
|
-
Everyone interacting in the Perb project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
83
|
+
Everyone interacting in the Perb project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/Maaarcocr/perb/blob/master/CODE_OF_CONDUCT.md).
|
data/ext/perb/Cargo.lock
CHANGED
@@ -247,18 +247,18 @@ dependencies = [
|
|
247
247
|
|
248
248
|
[[package]]
|
249
249
|
name = "rb-sys"
|
250
|
-
version = "0.9.
|
250
|
+
version = "0.9.53"
|
251
251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
252
|
-
checksum = "
|
252
|
+
checksum = "aa291f69bcc44f8e96597a3f39e9933fde6977b825415cfaa670ac49b8ab7c99"
|
253
253
|
dependencies = [
|
254
254
|
"rb-sys-build",
|
255
255
|
]
|
256
256
|
|
257
257
|
[[package]]
|
258
258
|
name = "rb-sys-build"
|
259
|
-
version = "0.9.
|
259
|
+
version = "0.9.53"
|
260
260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
261
|
-
checksum = "
|
261
|
+
checksum = "d998fd6ef588471d6d7cca24c4da88eda5e6757b6885c55760e856ecdb254c3d"
|
262
262
|
dependencies = [
|
263
263
|
"bindgen",
|
264
264
|
"regex",
|
data/ext/perb/Cargo.toml
CHANGED
data/lib/perb/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: perb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marco Concetto Rudilosso
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-12-
|
12
|
+
date: 2022-12-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: parser
|
@@ -31,14 +31,14 @@ dependencies:
|
|
31
31
|
requirements:
|
32
32
|
- - "~>"
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: 0.9.
|
34
|
+
version: 0.9.53
|
35
35
|
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
39
|
- - "~>"
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: 0.9.
|
41
|
+
version: 0.9.53
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: rake-compiler
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|