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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4d147f0306e6a9c9c89cce4dcc30ff7ecdf85fb1c08f4942f234f1b84bff5d58
4
- data.tar.gz: 7d4e5dbb2011da49b6cd67cd1284afef481f5fe0459bca730393ff1d2fd635e3
3
+ metadata.gz: 0fb76541355fc902835ad93d741308842b5584144792c28dfa8eb4469e31cddd
4
+ data.tar.gz: b62d38a2b288de14cf358d6e9c641a20adf22a09916e421e9b349a7ba42b6a03
5
5
  SHA512:
6
- metadata.gz: 6426988554b37d64140c11697a61e9b72ee19c34aeda5932800489216bda776e8b449a04905bd86bbb9a8aaab325f980a3f08fcb06fda6dd58f89359d051776b
7
- data.tar.gz: 16ee173e6f09fb4c877271f35b74a8a6f2c982e9ac321607779a87dd1f5f5232f4a1e1f64993dbda97376329bc2e7846cd7d786ea7467c5e34daa932971e5a9c
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.39)
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.52)
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
- Perb instruments your methods such that they show up when a ruby executable gets profiled with perf. it works by
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 profile.
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/[USERNAME]/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/[USERNAME]/perb/blob/master/CODE_OF_CONDUCT.md).
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/[USERNAME]/perb/blob/master/CODE_OF_CONDUCT.md).
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.52"
250
+ version = "0.9.53"
251
251
  source = "registry+https://github.com/rust-lang/crates.io-index"
252
- checksum = "02fffdb0162fc4cc1b6509b2d9b32a75f7e7ed392f58bde639e0c33b23e74b97"
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.52"
259
+ version = "0.9.53"
260
260
  source = "registry+https://github.com/rust-lang/crates.io-index"
261
- checksum = "85d1a236755f879fc155d16d9ba4cd3b1975fd52ef6a28113702ae3881b73c03"
261
+ checksum = "d998fd6ef588471d6d7cca24c4da88eda5e6757b6885c55760e856ecdb254c3d"
262
262
  dependencies = [
263
263
  "bindgen",
264
264
  "regex",
data/ext/perb/Cargo.toml CHANGED
@@ -10,7 +10,7 @@ crate-type = ["cdylib"]
10
10
 
11
11
  [dependencies]
12
12
  magnus = { version = "0.4", features = ["rb-sys-interop"] }
13
- rb-sys = "0.9.52"
13
+ rb-sys = "0.9.53"
14
14
  dynasmrt = "1"
15
15
  once_cell = "1"
16
16
 
data/lib/perb/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Perb
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
5
5
  end
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.1.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-28 00:00:00.000000000 Z
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.39
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.39
41
+ version: 0.9.53
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: rake-compiler
44
44
  requirement: !ruby/object:Gem::Requirement