aruba 0.10.0.pre2 → 0.10.0

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: 8629fdb3cc71266ccb714b5423728671ef1216b9
4
- data.tar.gz: 5451d0a593fcb71b59275a3b83f7ecdbacc79d8d
3
+ metadata.gz: 8a3048377a86fca3cf6e131d80ef75616f7b99a8
4
+ data.tar.gz: e093105bc153ef4adead0b3119fbcb1936f571a2
5
5
  SHA512:
6
- metadata.gz: b61b360369dd57186dc7a4de4c0e2c5c367fa3109a0ed4d63205f704787344392e9b677216fc00b2d5eb33a19ed0c66b8c087d3d08492260911033d2655d813b
7
- data.tar.gz: 3e69d2bdc444786404a5e09edef498afb4c5f6a041858d950ff90528c87d01971eb550977b8ed65e8c9a3fe9729d02eecba9ec03ce4ae84f51d7fe0349e695d7
6
+ metadata.gz: 8c3500b2a75e4348e204a700ca4c80edfb1e5888d1fe2a3f6151f87d06f0ff0a83e5634c64d36beb511d6b5f6b78c81c511459cd72c0a1a6c461d6af704d96ba
7
+ data.tar.gz: 80c00411b64114a866672be6f05a602e0d11271ff0edc1a66953e833f6bedb816b74df3ac109ebf2635eec6696ae8c13f8286ce065b90c872094dbd7d960ae9b
data/History.md CHANGED
@@ -1,12 +1,16 @@
1
1
  # Latest Release
2
2
 
3
+ ## [v0.10.0](https://github.com/cucumber/aruba/compare/v0.10.0.pre2...v0.10.0)
4
+
5
+ * Fix '"#exit_timeout" is deprecated' error (issue #314)
6
+
7
+ # Old releases
8
+
3
9
  ## [v0.10.0.pre2](https://github.com/cucumber/aruba/compare/v0.10.0.pre...v0.10.0.pre2)
4
10
 
5
11
  * Take over code from `RSpec::Support::ObjectFormatter` since `rspec-support`
6
12
  is not intended for public use.
7
13
 
8
- # Old releases
9
-
10
14
  ## [v0.10.0.pre](https://github.com/cucumber/aruba/compare/v0.9.0...v0.10.0)
11
15
 
12
16
  * Add some new steps to make writing documentation easier using "cucumber",
@@ -82,7 +82,7 @@ When(/^I stop the command(?: started last)? if (output|stdout|stderr) contains:$
82
82
  end
83
83
 
84
84
  When(/^I wait for (?:output|stdout) to contain:$/) do |expected|
85
- Timeout.timeout(exit_timeout) do
85
+ Timeout.timeout(aruba.config.exit_timeout) do
86
86
  loop do
87
87
  begin
88
88
  expect(last_command_started).to have_output an_output_string_including(expected)
@@ -97,7 +97,7 @@ When(/^I wait for (?:output|stdout) to contain:$/) do |expected|
97
97
  end
98
98
 
99
99
  When(/^I wait for (?:output|stdout) to contain "([^"]*)"$/) do |expected|
100
- Timeout.timeout(exit_timeout) do
100
+ Timeout.timeout(aruba.config.exit_timeout) do
101
101
  loop do
102
102
  begin
103
103
  expect(last_command_started).to have_output an_output_string_including(expected)
@@ -1,3 +1,3 @@
1
1
  module Aruba
2
- VERSION = '0.10.0.pre2'
2
+ VERSION = '0.10.0'
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.10.0.pre2
4
+ version: 0.10.0
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: 2015-10-21 00:00:00.000000000 Z
16
+ date: 2015-10-30 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: cucumber
@@ -424,15 +424,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
424
424
  version: 1.8.7
425
425
  required_rubygems_version: !ruby/object:Gem::Requirement
426
426
  requirements:
427
- - - ">"
427
+ - - ">="
428
428
  - !ruby/object:Gem::Version
429
- version: 1.3.1
429
+ version: '0'
430
430
  requirements: []
431
431
  rubyforge_project:
432
432
  rubygems_version: 2.4.5.1
433
433
  signing_key:
434
434
  specification_version: 4
435
- summary: aruba-0.10.0.pre2
435
+ summary: aruba-0.10.0
436
436
  test_files:
437
437
  - features/announce.feature
438
438
  - features/api/command/run.feature