cucumber-blendle-steps 0.8.1 → 0.8.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/CHANGELOG.md +3 -0
- data/lib/cucumber/blendle/steps/benchmark_steps.rb +2 -0
- data/lib/cucumber/blendle/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 555e0cfd7893221b67853b9e7c108c72e52d6db1
|
|
4
|
+
data.tar.gz: 861b303b38b65fcd118f931f53e274a1fad604cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8afcc6ec6e4d0d3b495c53d40fd370701db8179d51b02060ee8f0b65e84605758b395ae36c3343721918fe3cb88ec2ce8aa270c291cce7d5e879b52706607a82
|
|
7
|
+
data.tar.gz: c7f1d81ae4f5212c001e56c57945b3d5b043e6faa87a3e41c7f109b0eff3922ab58887d3c4576f58f582be978abae7d90947fdec145d8b3368a415ef8f0f7d9a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## [v0.8.1](https://github.com/blendle/cucumber-blendle-steps/tree/v0.8.1) (2016-04-26)
|
|
4
|
+
[Full Changelog](https://github.com/blendle/cucumber-blendle-steps/compare/v0.8.0...v0.8.1)
|
|
5
|
+
|
|
3
6
|
## [v0.8.0](https://github.com/blendle/cucumber-blendle-steps/tree/v0.8.0) (2016-04-24)
|
|
4
7
|
[Full Changelog](https://github.com/blendle/cucumber-blendle-steps/compare/v0.7.3...v0.8.0)
|
|
5
8
|
|
|
@@ -41,6 +41,7 @@ When(/^I start measuring time$/) do
|
|
|
41
41
|
assert false, 'measuring time requires the "@performance" tag to be present.'
|
|
42
42
|
end
|
|
43
43
|
|
|
44
|
+
@performance_stop_time = nil
|
|
44
45
|
@performance_start_time = Timecop.return { Time.now }
|
|
45
46
|
end
|
|
46
47
|
|
|
@@ -84,6 +85,7 @@ Then(/^exactly (\d+) database queries have been executed/) do |query_count|
|
|
|
84
85
|
puts "queries counted: #{DBProfiler.query_count}"
|
|
85
86
|
|
|
86
87
|
expect(DBProfiler.query_count).to eql(query_count.to_i)
|
|
88
|
+
DBProfiler.stop
|
|
87
89
|
end
|
|
88
90
|
|
|
89
91
|
# Stops the DBProfiler, resetting the query counter, and disabling debug output
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cucumber-blendle-steps
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jean Mertz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-04-
|
|
11
|
+
date: 2016-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|