baf 0.9.0 → 0.9.1
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/lib/baf/testing/cucumber/steps/execution.rb +5 -1
- data/lib/baf/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 614382e90edcf72530678f4e090e363bd58a8fa7
|
|
4
|
+
data.tar.gz: 6476cb0efc65a0ea652cf22221bb5ed6e0b07910
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 319e1139399e2142c444162f4a3f222d9d6a037ab245d678be31139d94133b3af0d81028b56d77bd9b01e93ec8153c5dc3df71679b1620c33cef5c724a690406
|
|
7
|
+
data.tar.gz: 46c6b563b9551faae1451df647350af99a1c6a9487a9e443883195d38e00f9ed7de61ecbf7201b65f87ae637130c6deea60c77c19ea78becdcd0a3f223f5b92d
|
|
@@ -28,10 +28,14 @@ When /^I( successfully)? (run|\w+) the program$/ do |check, run|
|
|
|
28
28
|
program_run check: !!check, wait: run == 'run'
|
|
29
29
|
end
|
|
30
30
|
|
|
31
|
-
When /^I( successfully)? (run|\w+) the program with arguments (.+)$/ do |check, run, args|
|
|
31
|
+
When /^I( successfully)? (run|\w+) the program with arguments? (.+)$/ do |check, run, args|
|
|
32
32
|
program_run check: !!check, args: args, wait: run == 'run'
|
|
33
33
|
end
|
|
34
34
|
|
|
35
|
+
When /^I( successfully)? (run|\w+) the program with command (.+)$/ do |check, run, cmd|
|
|
36
|
+
program_run check: !!check, args: cmd, wait: run == 'run'
|
|
37
|
+
end
|
|
38
|
+
|
|
35
39
|
When /^I( successfully)? (run|\w+) the program with options? (-.+)$/ do |check, run, opts|
|
|
36
40
|
program_run check: !!check, opts: opts, wait: run == 'run'
|
|
37
41
|
end
|
data/lib/baf/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: baf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thibault Jouan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-02-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: baf-testing
|
|
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
78
|
rubyforge_project:
|
|
79
|
-
rubygems_version: 2.6.
|
|
79
|
+
rubygems_version: 2.6.10
|
|
80
80
|
signing_key:
|
|
81
81
|
specification_version: 4
|
|
82
82
|
summary: Basic Application Framework
|