benchable 0.3.1 → 0.3.2
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 +4 -4
- data/.github/workflows/tests-and-linter.yml +4 -4
- data/.tool-versions +1 -0
- data/CHANGELOG.md +18 -4
- data/Gemfile +2 -3
- data/Gemfile.lock +70 -84
- data/benchable.gemspec +1 -1
- data/lib/benchable/benchmark.rb +4 -8
- data/lib/benchable/version.rb +1 -1
- metadata +5 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87cc0bd81e3bc20d1cff1143def72c70684a065f40b0077d709624a0303a1dd3
|
4
|
+
data.tar.gz: d8346382a1e72d1c39dc36ebf55089a0f85816445ce35f80c53f68e059d50266
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: efae28a9f656b930e64ed9b443a9b75d50199de020c8a18e15b6e2fd648beae2a3bcf9915f31b9bae42988affac526c2908d8237e982b157a7fbc10f0d534f8d
|
7
|
+
data.tar.gz: 4f6cdd10159e9251eb7dabae2f16b7fcfb9909d8e252027b2dc12e8b070b1aec0095ea09c1cfbdc69c9d2d3a8384e8ff7bba19ec0b53f6456ea015cb3ceba726
|
@@ -2,19 +2,19 @@ name: Ruby
|
|
2
2
|
|
3
3
|
on:
|
4
4
|
push:
|
5
|
-
branches: [
|
5
|
+
branches: [main]
|
6
6
|
pull_request:
|
7
|
-
branches: [
|
7
|
+
branches: [main]
|
8
8
|
|
9
9
|
jobs:
|
10
10
|
build:
|
11
11
|
runs-on: ubuntu-latest
|
12
12
|
strategy:
|
13
13
|
matrix:
|
14
|
-
ruby: [
|
14
|
+
ruby: ['3.1', '3.2', '3.3', '3.4']
|
15
15
|
|
16
16
|
steps:
|
17
|
-
- uses: actions/checkout@
|
17
|
+
- uses: actions/checkout@v4
|
18
18
|
- name: Set up Ruby ${{ matrix.ruby }}
|
19
19
|
uses: ruby/setup-ruby@v1
|
20
20
|
with:
|
data/.tool-versions
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby 3.4.4
|
data/CHANGELOG.md
CHANGED
@@ -6,8 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
|
+
|
9
10
|
---
|
10
11
|
|
12
|
+
## [0.3.2] - 2025-05-29
|
13
|
+
|
14
|
+
### Changed
|
15
|
+
|
16
|
+
- Keep benchmark cases titles consistent
|
17
|
+
|
18
|
+
Before, we would call "capitalize" on the title of the benchmark case, which
|
19
|
+
would change the original string the user provided. This fixes it, so the report
|
20
|
+
always uses the original title.
|
21
|
+
|
11
22
|
## [0.3.1] - 2021-09-10
|
12
23
|
|
13
24
|
### Changed
|
@@ -48,6 +59,7 @@ end
|
|
48
59
|
## [0.2.0] - 2020-10-23
|
49
60
|
|
50
61
|
### Added
|
62
|
+
|
51
63
|
- Support for `Benchmark.memory` via [benchmark-memory](https://github.com/michaelherold/benchmark-memory).
|
52
64
|
|
53
65
|
[unreleased]: https://github.com/MatheusRich/benchable/compare/v0.2.0...HEAD
|
@@ -56,10 +68,12 @@ end
|
|
56
68
|
## [0.1.0] - 2020-08-16
|
57
69
|
|
58
70
|
### Added
|
71
|
+
|
59
72
|
- Support for `Benchmark.bm`, `Benchmark.bmbm` and `Benchmark.ips`.
|
60
73
|
|
61
|
-
[unreleased]: https://github.com/MatheusRich/benchable/compare/v0.3.
|
62
|
-
[0.
|
63
|
-
[0.
|
74
|
+
[unreleased]: https://github.com/MatheusRich/benchable/compare/v0.3.2...HEAD
|
75
|
+
[0.3.2]: https://github.com/MatheusRich/benchable/releases/tag/v0.3.2
|
76
|
+
[0.3.1]: https://github.com/MatheusRich/benchable/releases/tag/v0.3.1
|
64
77
|
[0.3.0]: https://github.com/MatheusRich/benchable/releases/tag/v0.3.0
|
65
|
-
[0.
|
78
|
+
[0.2.0]: https://github.com/MatheusRich/benchable/releases/tag/v0.2.0
|
79
|
+
[0.1.0]: https://github.com/MatheusRich/benchable/releases/tag/v0.1.0
|
data/Gemfile
CHANGED
@@ -8,7 +8,6 @@ gemspec
|
|
8
8
|
gem "guard-rspec", require: false
|
9
9
|
gem "rake", "~> 12.0"
|
10
10
|
gem "rspec", "~> 3.0"
|
11
|
-
gem "standard", "~> 1.
|
12
|
-
gem "simplecov", "~> 0.
|
13
|
-
gem "solargraph", "~> 0.39"
|
11
|
+
gem "standard", "~> 1.30"
|
12
|
+
gem "simplecov", "~> 0.22.0", require: false
|
14
13
|
gem "yard", "~> 0.9.25"
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
benchable (0.3.
|
4
|
+
benchable (0.3.2)
|
5
5
|
benchmark-ips (~> 2.8, >= 2.8.2)
|
6
6
|
benchmark-memory (~> 0.1.2)
|
7
7
|
|
@@ -9,18 +9,15 @@ GEM
|
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
11
|
ast (2.4.2)
|
12
|
-
|
13
|
-
benchmark (0.1.1)
|
14
|
-
benchmark-ips (2.9.1)
|
12
|
+
benchmark-ips (2.14.0)
|
15
13
|
benchmark-memory (0.1.2)
|
16
14
|
memory_profiler (~> 0.9)
|
17
15
|
coderay (1.1.3)
|
18
|
-
diff-lcs (1.
|
19
|
-
docile (1.4.
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
guard (2.18.0)
|
16
|
+
diff-lcs (1.5.1)
|
17
|
+
docile (1.4.1)
|
18
|
+
ffi (1.17.0)
|
19
|
+
formatador (1.1.0)
|
20
|
+
guard (2.19.0)
|
24
21
|
formatador (>= 0.2.4)
|
25
22
|
listen (>= 2.7, < 4.0)
|
26
23
|
lumberjack (>= 1.0.12, < 2.0)
|
@@ -34,96 +31,86 @@ GEM
|
|
34
31
|
guard (~> 2.1)
|
35
32
|
guard-compat (~> 1.1)
|
36
33
|
rspec (>= 2.99.0, < 4.0)
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
kramdown (~> 2.0)
|
42
|
-
listen (3.7.0)
|
34
|
+
json (2.9.1)
|
35
|
+
language_server-protocol (3.17.0.3)
|
36
|
+
lint_roller (1.1.0)
|
37
|
+
listen (3.9.0)
|
43
38
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
44
39
|
rb-inotify (~> 0.9, >= 0.9.10)
|
45
|
-
lumberjack (1.2.
|
40
|
+
lumberjack (1.2.10)
|
46
41
|
memory_profiler (0.9.14)
|
47
|
-
method_source (1.
|
48
|
-
mini_portile2 (2.6.1)
|
42
|
+
method_source (1.1.0)
|
49
43
|
nenv (0.3.0)
|
50
|
-
nokogiri (1.12.4)
|
51
|
-
mini_portile2 (~> 2.6.1)
|
52
|
-
racc (~> 1.4)
|
53
44
|
notiffany (0.1.3)
|
54
45
|
nenv (~> 0.1)
|
55
46
|
shellany (~> 0.0)
|
56
|
-
parallel (1.
|
57
|
-
parser (3.
|
47
|
+
parallel (1.26.3)
|
48
|
+
parser (3.3.6.0)
|
58
49
|
ast (~> 2.4.1)
|
59
|
-
|
50
|
+
racc
|
51
|
+
pry (0.15.2)
|
60
52
|
coderay (~> 1.1)
|
61
53
|
method_source (~> 1.0)
|
62
|
-
racc (1.
|
63
|
-
rainbow (3.
|
54
|
+
racc (1.8.1)
|
55
|
+
rainbow (3.1.1)
|
64
56
|
rake (12.3.3)
|
65
|
-
rb-fsevent (0.11.
|
66
|
-
rb-inotify (0.
|
57
|
+
rb-fsevent (0.11.2)
|
58
|
+
rb-inotify (0.11.1)
|
67
59
|
ffi (~> 1.0)
|
68
|
-
regexp_parser (2.
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
rspec-
|
75
|
-
|
76
|
-
rspec-core (3.10.1)
|
77
|
-
rspec-support (~> 3.10.0)
|
78
|
-
rspec-expectations (3.10.1)
|
60
|
+
regexp_parser (2.10.0)
|
61
|
+
rspec (3.13.0)
|
62
|
+
rspec-core (~> 3.13.0)
|
63
|
+
rspec-expectations (~> 3.13.0)
|
64
|
+
rspec-mocks (~> 3.13.0)
|
65
|
+
rspec-core (3.13.2)
|
66
|
+
rspec-support (~> 3.13.0)
|
67
|
+
rspec-expectations (3.13.3)
|
79
68
|
diff-lcs (>= 1.2.0, < 2.0)
|
80
|
-
rspec-support (~> 3.
|
81
|
-
rspec-mocks (3.
|
69
|
+
rspec-support (~> 3.13.0)
|
70
|
+
rspec-mocks (3.13.2)
|
82
71
|
diff-lcs (>= 1.2.0, < 2.0)
|
83
|
-
rspec-support (~> 3.
|
84
|
-
rspec-support (3.
|
85
|
-
rubocop (1.
|
72
|
+
rspec-support (~> 3.13.0)
|
73
|
+
rspec-support (3.13.2)
|
74
|
+
rubocop (1.69.2)
|
75
|
+
json (~> 2.3)
|
76
|
+
language_server-protocol (>= 3.17.0)
|
86
77
|
parallel (~> 1.10)
|
87
|
-
parser (>= 3.
|
78
|
+
parser (>= 3.3.0.2)
|
88
79
|
rainbow (>= 2.2.2, < 4.0)
|
89
|
-
regexp_parser (>=
|
90
|
-
|
91
|
-
rubocop-ast (>= 1.9.1, < 2.0)
|
80
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
81
|
+
rubocop-ast (>= 1.36.2, < 2.0)
|
92
82
|
ruby-progressbar (~> 1.7)
|
93
|
-
unicode-display_width (>=
|
94
|
-
rubocop-ast (1.
|
95
|
-
parser (>= 3.
|
96
|
-
rubocop-performance (1.
|
97
|
-
rubocop (>= 1.
|
98
|
-
rubocop-ast (>=
|
99
|
-
ruby-progressbar (1.
|
83
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
84
|
+
rubocop-ast (1.37.0)
|
85
|
+
parser (>= 3.3.1.0)
|
86
|
+
rubocop-performance (1.23.0)
|
87
|
+
rubocop (>= 1.48.1, < 2.0)
|
88
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
89
|
+
ruby-progressbar (1.13.0)
|
100
90
|
shellany (0.0.1)
|
101
|
-
simplecov (0.
|
91
|
+
simplecov (0.22.0)
|
102
92
|
docile (~> 1.1)
|
103
93
|
simplecov-html (~> 0.11)
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
tilt (2.0.10)
|
125
|
-
unicode-display_width (2.0.0)
|
126
|
-
yard (0.9.26)
|
94
|
+
simplecov_json_formatter (~> 0.1)
|
95
|
+
simplecov-html (0.13.1)
|
96
|
+
simplecov_json_formatter (0.1.4)
|
97
|
+
standard (1.43.0)
|
98
|
+
language_server-protocol (~> 3.17.0.2)
|
99
|
+
lint_roller (~> 1.0)
|
100
|
+
rubocop (~> 1.69.1)
|
101
|
+
standard-custom (~> 1.0.0)
|
102
|
+
standard-performance (~> 1.6)
|
103
|
+
standard-custom (1.0.2)
|
104
|
+
lint_roller (~> 1.0)
|
105
|
+
rubocop (~> 1.50)
|
106
|
+
standard-performance (1.6.0)
|
107
|
+
lint_roller (~> 1.1)
|
108
|
+
rubocop-performance (~> 1.23.0)
|
109
|
+
thor (1.3.2)
|
110
|
+
unicode-display_width (3.1.3)
|
111
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
112
|
+
unicode-emoji (4.0.4)
|
113
|
+
yard (0.9.37)
|
127
114
|
|
128
115
|
PLATFORMS
|
129
116
|
ruby
|
@@ -133,10 +120,9 @@ DEPENDENCIES
|
|
133
120
|
guard-rspec
|
134
121
|
rake (~> 12.0)
|
135
122
|
rspec (~> 3.0)
|
136
|
-
simplecov (~> 0.
|
137
|
-
|
138
|
-
standard (~> 1.3.0)
|
123
|
+
simplecov (~> 0.22.0)
|
124
|
+
standard (~> 1.30)
|
139
125
|
yard (~> 0.9.25)
|
140
126
|
|
141
127
|
BUNDLED WITH
|
142
|
-
2.2
|
128
|
+
2.6.2
|
data/benchable.gemspec
CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
12
12
|
# spec.description = %q{TODO: Write a longer description or delete this line.}
|
13
13
|
spec.homepage = "https://github.com/MatheusRich/benchable"
|
14
14
|
spec.license = "MIT"
|
15
|
-
spec.required_ruby_version = Gem::Requirement.new(">=
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")
|
16
16
|
|
17
17
|
spec.metadata["homepage_uri"] = spec.homepage
|
18
18
|
spec.metadata["source_code_uri"] = "https://github.com/MatheusRich/benchable"
|
data/lib/benchable/benchmark.rb
CHANGED
@@ -24,7 +24,7 @@ module Benchable
|
|
24
24
|
end
|
25
25
|
|
26
26
|
def self.bench(name, &block)
|
27
|
-
define_method(
|
27
|
+
define_method(:"bench_#{name}", &block)
|
28
28
|
end
|
29
29
|
|
30
30
|
def setup
|
@@ -39,10 +39,6 @@ module Benchable
|
|
39
39
|
public_methods.grep(/\Abench_/)
|
40
40
|
end
|
41
41
|
|
42
|
-
private_class_method def self.method_name_for(name)
|
43
|
-
"bench_#{name.to_s.tr(" ", "_").downcase}"
|
44
|
-
end
|
45
|
-
|
46
42
|
private
|
47
43
|
|
48
44
|
attr_reader :benchmark_type, :options
|
@@ -56,7 +52,7 @@ module Benchable
|
|
56
52
|
b.config(options) if benchmark_type == :ips
|
57
53
|
|
58
54
|
cases.each do |benchmark_case|
|
59
|
-
b.report(
|
55
|
+
b.report(title_for(benchmark_case)) do
|
60
56
|
method(benchmark_case).call
|
61
57
|
end
|
62
58
|
end
|
@@ -65,8 +61,8 @@ module Benchable
|
|
65
61
|
end
|
66
62
|
end
|
67
63
|
|
68
|
-
def
|
69
|
-
benchmark_case.to_s.
|
64
|
+
def title_for(benchmark_case)
|
65
|
+
benchmark_case.to_s.delete_prefix("bench_")
|
70
66
|
end
|
71
67
|
|
72
68
|
def benchmark(&block)
|
data/lib/benchable/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: benchable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matheus Richard
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: benchmark-ips
|
@@ -44,7 +43,6 @@ dependencies:
|
|
44
43
|
- - "~>"
|
45
44
|
- !ruby/object:Gem::Version
|
46
45
|
version: 0.1.2
|
47
|
-
description:
|
48
46
|
email:
|
49
47
|
- matheusrichardt@gmail.com
|
50
48
|
executables: []
|
@@ -54,6 +52,7 @@ files:
|
|
54
52
|
- ".github/workflows/tests-and-linter.yml"
|
55
53
|
- ".gitignore"
|
56
54
|
- ".rspec"
|
55
|
+
- ".tool-versions"
|
57
56
|
- CHANGELOG.md
|
58
57
|
- CODE_OF_CONDUCT.md
|
59
58
|
- Gemfile
|
@@ -75,7 +74,6 @@ metadata:
|
|
75
74
|
homepage_uri: https://github.com/MatheusRich/benchable
|
76
75
|
source_code_uri: https://github.com/MatheusRich/benchable
|
77
76
|
changelog_uri: https://github.com/MatheusRich/benchable/blob/master/CHANGELOG.md
|
78
|
-
post_install_message:
|
79
77
|
rdoc_options: []
|
80
78
|
require_paths:
|
81
79
|
- lib
|
@@ -83,15 +81,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
83
81
|
requirements:
|
84
82
|
- - ">="
|
85
83
|
- !ruby/object:Gem::Version
|
86
|
-
version:
|
84
|
+
version: 3.0.0
|
87
85
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
86
|
requirements:
|
89
87
|
- - ">="
|
90
88
|
- !ruby/object:Gem::Version
|
91
89
|
version: '0'
|
92
90
|
requirements: []
|
93
|
-
rubygems_version: 3.
|
94
|
-
signing_key:
|
91
|
+
rubygems_version: 3.6.7
|
95
92
|
specification_version: 4
|
96
93
|
summary: Write benchmarks without the hassle
|
97
94
|
test_files: []
|