benchmark_driver 0.10.3 → 0.10.4

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: a01e7df6105386d49b39a54c519f88b35026ed82d58ff9b116a4fdc5efb321e5
4
- data.tar.gz: 34dd0f4a146931a01cf0a3f16506a3d077a62a8ae7000f600a6db8a0af507c74
3
+ metadata.gz: 451112f3dbe8393c736026ac99ad74523ae88f8d2c0396872d50200890a3dc5c
4
+ data.tar.gz: 9bbb2356cf2d6da48a30182213d7743848b3152fec18260b2afbf65d8861c1a6
5
5
  SHA512:
6
- metadata.gz: 01c6b2070e29d77c444d5556aef4412938421fad38e0f54eacd5ad5ec7719bf7d89c697caafc306141694a500f639e1848d279fd585caad1ed5b06e8e0ffa695
7
- data.tar.gz: 44e9353d54b7f14532dfd992bb1cf33bf33d8452eb69f90b73e0aaf6d5526402b5369eb2793aa523bf6b23137985052f5a3754ab16d28e31e457ac8c955a8e3b
6
+ metadata.gz: 666ab1723f695724dd566787abac6634f93efdbaa2bf47f3a9e979c02816af638a92e35ed0c03df54cf1aecee679296e0f3949897532db8bd1c0b0a1b6b03d2c
7
+ data.tar.gz: e4e6706b30487f84e33fae49ff66c13595f2a323da24b7842af7d8f3891bee8e6a954e41eb645a961eba7b20d3e43d13c55168a43f6b3829dbf4c7e82f5c740d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # v0.10.4
2
+
3
+ - Fix frozen string error when parsing multiple jobs
4
+
1
5
  # v0.10.3
2
6
 
3
7
  - Allow specifying name in `--rbenv`
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 profiling/running options
21
+ - Benchmark with various running options
22
22
  - Integrated benchmark support using external libraries
23
- - Runner, profiler and output format are all pluggable
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
 
@@ -56,7 +56,7 @@ module BenchmarkDriver
56
56
  super
57
57
  self.class.defaults.each do |key, value|
58
58
  if public_send(key).nil?
59
- public_send("#{key}=", value)
59
+ public_send("#{key}=", value.dup)
60
60
  end
61
61
  end
62
62
  end
@@ -1,3 +1,3 @@
1
1
  module BenchmarkDriver
2
- VERSION = '0.10.3'
2
+ VERSION = '0.10.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: benchmark_driver
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.3
4
+ version: 0.10.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takashi Kokubun