aruba 0.14.0 → 0.14.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e5ec77c0f2b08ab348a156340b1ef9c8f663b4ee
4
- data.tar.gz: 5675b79f8e3cf85ba2a27ea371088dba3e781802
3
+ metadata.gz: 7869abee326f90c71c874dd78dcf9d4e6ae37593
4
+ data.tar.gz: ce4f3718d708038d6ee76b9372c7da84348ff525
5
5
  SHA512:
6
- metadata.gz: 4bff6ec753cafe72067bc25c1f00680825e17c830905ff6c3783f4bb927f44ab20f34d7d8be73601329cc6ea019bd82c215f648307a755582bc635830abbe46e
7
- data.tar.gz: 4021df9a869200d6d123ee2249706a42fe2459f516f69695502b49630ec7bb79dae9991a92b315a179b1cfaf9cb74b07a4b54d597f25c537b13855f2b66842f0
6
+ metadata.gz: 1a2e84245415c30ed8b5bd25a5fdc0d7c024fe71175658074eb15f30eb55f4697f0f909d809054c153c26a6f50f87a9ebaf9de1a4a1f07b71213c06b6f51672b
7
+ data.tar.gz: 2a7c38752395afae31e4cdb67b92c7faa9996338a41bcfc0450e46c738522e54f29225575f700da753b4e65737da5f7b63fad1743db5f029fd6bd411d3f1928e
data/History.md CHANGED
@@ -54,6 +54,10 @@
54
54
 
55
55
  # RELEASED
56
56
 
57
+ ## [v0.14.1](https://github.com/cucumber/aruba/compare/v0.14.0...v0.14.1)
58
+
59
+ * Fixed bug in framework step
60
+
57
61
  ## [v0.14.0](https://github.com/cucumber/aruba/compare/v0.13.0...v0.14.0)
58
62
 
59
63
  * Add `<project_root>/exe` to search path for commands: This is the new default if you setup a
@@ -47,10 +47,10 @@ end
47
47
  # RSpec
48
48
  Then /^the spec(?:s)? should( not)?(?: all)? pass with( regex)?:$/ do |negated, regex, string|
49
49
  if negated
50
- step 'the output should contain " failed)"'
50
+ step 'the output should not contain "0 failures"'
51
51
  step 'the exit status should be 1'
52
52
  else
53
- step 'the output should not contain " failed)"'
53
+ step 'the output should contain "0 failures"'
54
54
  step 'the exit status should be 0'
55
55
  end
56
56
 
@@ -1,3 +1,3 @@
1
1
  module Aruba
2
- VERSION = '0.14.0'.freeze
2
+ VERSION = '0.14.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aruba
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.14.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aslak Hellesøy
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
- date: 2016-03-08 00:00:00.000000000 Z
16
+ date: 2016-03-17 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: cucumber
@@ -475,7 +475,7 @@ rubyforge_project:
475
475
  rubygems_version: 2.5.1
476
476
  signing_key:
477
477
  specification_version: 4
478
- summary: aruba-0.14.0
478
+ summary: aruba-0.14.1
479
479
  test_files:
480
480
  - features/api/command/find_command.feature
481
481
  - features/api/command/last_command_started.feature