benchmark_driver 0.14.7 → 0.14.8
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 +5 -0
- data/lib/benchmark_driver/runner/recorded.rb +2 -0
- data/lib/benchmark_driver/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ef37b8f2469b5f5b76f6b876c56529470af2dd56a7736a2ad40287b67abf5fe
|
|
4
|
+
data.tar.gz: 38a248dc61c9466af0f2686aa88fe6d0dde2b1f5515b90b13367cd1b3ece9abc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 398765a51dbd262f7bb3962c1bc4ee69dfa9d128a2eae82ac680c93ebac10ef61fb89dcd9b081f01e0128637bc41ff175a14fad583ffbb2e48772be8c55d20c6
|
|
7
|
+
data.tar.gz: 517ecb40cd1d677cb92337b309121309609c6b61c6f0ab687f8cddc2512e7c6e11dc15dfacd4cfd0e020c998ae5ade44f775080ed4258b7edcc620a7cbf8d764
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
# v0.14.8
|
|
2
|
+
|
|
3
|
+
- Fix bug that "benchmark\_driver.record.yml" created with `-e`/`--rbenv` option
|
|
4
|
+
has required to specify the same `-e`/`--rbenv` option [#42](https://github.com/benchmark-driver/benchmark-driver/issues/42)
|
|
5
|
+
|
|
1
6
|
# v0.14.7
|
|
2
7
|
|
|
3
8
|
- Fix bug on warmup with `BenchmarkDriver::BulkOutput` [#40](https://github.com/benchmark-driver/benchmark-driver/issues/40)
|
|
@@ -11,6 +11,7 @@ class BenchmarkDriver::Runner::Recorded
|
|
|
11
11
|
:metrics, # @param [Array<BenchmarkDriver::Metric>]
|
|
12
12
|
:warmup_results, # @param [Hash{ BenchmarkDriver::Context => Array<BenchmarkDriver::Metric> } }]
|
|
13
13
|
:benchmark_results, # @param [Hash{ BenchmarkDriver::Context => Array<BenchmarkDriver::Metric> } }]
|
|
14
|
+
:contexts, # @param [Array<BenchmarkDriver::Context>]
|
|
14
15
|
)
|
|
15
16
|
# Dynamically fetched and used by `BenchmarkDriver::JobParser.parse`
|
|
16
17
|
class << JobParser = Module.new
|
|
@@ -23,6 +24,7 @@ class BenchmarkDriver::Runner::Recorded
|
|
|
23
24
|
warmup_results: warmup_context_result.fetch(true, {}),
|
|
24
25
|
benchmark_results: warmup_context_result.fetch(false, {}),
|
|
25
26
|
metrics: metrics,
|
|
27
|
+
contexts: warmup_context_result.values.map(&:keys).flatten!.tap(&:uniq!),
|
|
26
28
|
)
|
|
27
29
|
end
|
|
28
30
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: benchmark_driver
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.14.
|
|
4
|
+
version: 0.14.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Takashi Kokubun
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-08-
|
|
11
|
+
date: 2018-08-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|