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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 267c75c0cec65b1e2176514be1d475871e6b48ee46229572b9f60d3eab12be6b
4
- data.tar.gz: b6850fafe72ef3a48a8d507b140e2184ec2d14782c739eac3bbe3eb899ab12be
3
+ metadata.gz: 2ef37b8f2469b5f5b76f6b876c56529470af2dd56a7736a2ad40287b67abf5fe
4
+ data.tar.gz: 38a248dc61c9466af0f2686aa88fe6d0dde2b1f5515b90b13367cd1b3ece9abc
5
5
  SHA512:
6
- metadata.gz: e7750b019ca064e3525b038375d0e7b7e936109480aed4c55a6ddb889ac5ef3f0facc6bded9fda75e69465bcd373142f291d5caca506bb6b7b188b3d6a52445c
7
- data.tar.gz: eefe08e6a48e6908b5d4bfa60b8c6c55fc2ce64c60576c456def86fc4a4764873e03cd5c7391c5b3ac334f97a2f746fea71a702f4b6597fc24aabc6e50de703c
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
@@ -1,3 +1,3 @@
1
1
  module BenchmarkDriver
2
- VERSION = '0.14.7'
2
+ VERSION = '0.14.8'
3
3
  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.7
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-28 00:00:00.000000000 Z
11
+ date: 2018-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler