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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5cd4714ae2ee6f378952487c36e712b724dfbf47
4
- data.tar.gz: 3d9d1d78fb55f41e218076db17fd8d31616a6889
3
+ metadata.gz: 614382e90edcf72530678f4e090e363bd58a8fa7
4
+ data.tar.gz: 6476cb0efc65a0ea652cf22221bb5ed6e0b07910
5
5
  SHA512:
6
- metadata.gz: 0ae8328b276044b956bf2ae313405eeb6b0ae94d219007abba5951aba3a13f69463c0b4e223f16d9b6ff9507ccb66da4d167f2b730842bf7788492470a73a84d
7
- data.tar.gz: b6ec44109fef3836e7588396058bd648e6227bcfbaea41f8a13b3c12ca231acc398cb1059800b1598e48192bd5ddc4dc7475a4c8a20188d326483d70db15ee8c
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
@@ -1,3 +1,3 @@
1
1
  module Baf
2
- VERSION = '0.9.0'.freeze
2
+ VERSION = '0.9.1'.freeze
3
3
  end
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.0
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-01-22 00:00:00.000000000 Z
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.8
79
+ rubygems_version: 2.6.10
80
80
  signing_key:
81
81
  specification_version: 4
82
82
  summary: Basic Application Framework