benchmark_driver 0.10.3 → 0.10.4
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/CHANGELOG.md +4 -0
- data/README.md +5 -4
- data/lib/benchmark_driver/struct.rb +1 -1
- data/lib/benchmark_driver/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 451112f3dbe8393c736026ac99ad74523ae88f8d2c0396872d50200890a3dc5c
|
4
|
+
data.tar.gz: 9bbb2356cf2d6da48a30182213d7743848b3152fec18260b2afbf65d8861c1a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 666ab1723f695724dd566787abac6634f93efdbaa2bf47f3a9e979c02816af638a92e35ed0c03df54cf1aecee679296e0f3949897532db8bd1c0b0a1b6b03d2c
|
7
|
+
data.tar.gz: e4e6706b30487f84e33fae49ff66c13595f2a323da24b7842af7d8f3891bee8e6a954e41eb645a961eba7b20d3e43d13c55168a43f6b3829dbf4c7e82f5c740d
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -18,9 +18,9 @@ Interface might be changed in the future, but it's almost fixed and many feature
|
|
18
18
|
### Pluggable & Fully Featured
|
19
19
|
|
20
20
|
- Flexible and real-time output format in ips, execution time, markdown table, etc.
|
21
|
-
- Benchmark with various
|
21
|
+
- Benchmark with various running options
|
22
22
|
- Integrated benchmark support using external libraries
|
23
|
-
- Runner
|
23
|
+
- Runner and output format are all pluggable
|
24
24
|
|
25
25
|
### Flexible Interface
|
26
26
|
|
@@ -77,13 +77,14 @@ With `benchmark-driver` command, you can describe benchmark with YAML input.
|
|
77
77
|
```
|
78
78
|
$ benchmark-driver -h
|
79
79
|
Usage: benchmark-driver [options] [YAML]
|
80
|
-
-r, --runner [TYPE] Specify runner type: ips, time, memory (default: ips)
|
81
|
-
-o, --output [TYPE] Specify output type: compare, simple, markdown (default: compare)
|
80
|
+
-r, --runner [TYPE] Specify runner type: ips, time, memory, once (default: ips)
|
81
|
+
-o, --output [TYPE] Specify output type: compare, simple, markdown, record (default: compare)
|
82
82
|
-e, --executables [EXECS] Ruby executables (e1::path1,arg1,...; e2::path2,arg2;...)
|
83
83
|
--rbenv [VERSIONS] Ruby executables in rbenv (x.x.x,arg1,...;y.y.y,arg2,...;...)
|
84
84
|
--repeat-count [NUM] Try benchmark NUM times and use the fastest result (TODO)
|
85
85
|
--bundler Install and use gems specified in Gemfile
|
86
86
|
--filter [REGEXP] Filter out benchmarks with given regexp
|
87
|
+
--verbose [LEVEL] Show some verbose outputs: 0, 1, 2 (default: 0)
|
87
88
|
--run-duration [SECONDS] Warmup esitmates loop_count to run for this duration (default: 3)
|
88
89
|
```
|
89
90
|
|