aruba 1.0.0.pre.alpha.5 → 1.0.0
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/.rubocop.yml +2 -2
- data/.rubocop_todo.yml +29 -25
- data/.simplecov +7 -5
- data/.travis.yml +23 -34
- data/CHANGELOG.md +94 -28
- data/CONTRIBUTING.md +0 -1
- data/Gemfile +3 -6
- data/LICENSE +1 -1
- data/README.md +37 -30
- data/Rakefile +2 -14
- data/appveyor.yml +1 -2
- data/aruba.gemspec +22 -14
- data/cucumber.yml +3 -3
- data/lib/aruba/api/commands.rb +3 -1
- data/lib/aruba/api/core.rb +27 -30
- data/lib/aruba/api/filesystem.rb +12 -29
- data/lib/aruba/aruba_path.rb +24 -95
- data/lib/aruba/config/jruby.rb +1 -1
- data/lib/aruba/config_wrapper.rb +1 -3
- data/lib/aruba/configuration.rb +6 -4
- data/lib/aruba/contracts/absolute_path.rb +2 -2
- data/lib/aruba/contracts/relative_path.rb +2 -2
- data/lib/aruba/event_bus/name_resolver.rb +2 -2
- data/lib/aruba/initializer.rb +5 -1
- data/lib/aruba/matchers/base/message_indenter.rb +1 -1
- data/lib/aruba/matchers/base/object_formatter.rb +0 -2
- data/lib/aruba/platforms/announcer.rb +5 -3
- data/lib/aruba/platforms/determine_disk_usage.rb +56 -19
- data/lib/aruba/platforms/unix_environment_variables.rb +7 -0
- data/lib/aruba/platforms/unix_platform.rb +9 -9
- data/lib/aruba/platforms/windows_command_string.rb +1 -1
- data/lib/aruba/platforms/windows_platform.rb +1 -1
- data/lib/aruba/processes/basic_process.rb +2 -4
- data/lib/aruba/processes/spawn_process.rb +11 -8
- data/lib/aruba/version.rb +1 -1
- metadata +38 -41
- data/lib/aruba/platforms/disk_usage_calculator.rb +0 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 63d0e00b28a69fa235c0586425c501669cb313ce3dae63a76a33386eb358085e
|
4
|
+
data.tar.gz: be16476fe85c35d571574194c46c426cbb5805fff5fe2277b04b3f32f7098dc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77fcdcd8b492e23fc72be16b48dd9913a3e7615ade362006cff3754661c0176c4483ce9d78ac7aa9d0c4da08ff1ae2c4f741b0f80ff93a221b10f7f2806b7c5f
|
7
|
+
data.tar.gz: 1d8f1f0f2879f5fef29c3baeee8d2041cd2d130e8cdfed5e77dac075960c0fd6ee0c813f6be1400e176b3a6846819946f1e5b56a02be2933b1e1b7682c313102
|
data/.rubocop.yml
CHANGED
@@ -6,7 +6,7 @@ AllCops:
|
|
6
6
|
- tmp/**/*
|
7
7
|
- vendor/**/*
|
8
8
|
DisplayCopNames: true
|
9
|
-
TargetRubyVersion: 2.
|
9
|
+
TargetRubyVersion: 2.4
|
10
10
|
|
11
11
|
# Use older RuboCop default
|
12
12
|
Style/PercentLiteralDelimiters:
|
@@ -25,7 +25,7 @@ Style/FrozenStringLiteralComment:
|
|
25
25
|
# Cop supports --auto-correct.
|
26
26
|
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
27
27
|
# URISchemes: http, https
|
28
|
-
|
28
|
+
Layout/LineLength:
|
29
29
|
Max: 150
|
30
30
|
|
31
31
|
inherit_from: .rubocop_todo.yml
|
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2020-01-01 19:49:41 +0100 using RuboCop version 0.78.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
@@ -11,18 +11,11 @@ Lint/AmbiguousBlockAssociation:
|
|
11
11
|
Exclude:
|
12
12
|
- 'lib/aruba/platforms/announcer.rb'
|
13
13
|
|
14
|
-
# Offense count:
|
14
|
+
# Offense count: 12
|
15
15
|
Lint/AmbiguousRegexpLiteral:
|
16
16
|
Exclude:
|
17
17
|
- 'lib/aruba/cucumber/testing_frameworks.rb'
|
18
18
|
|
19
|
-
# Offense count: 2
|
20
|
-
# Configuration parameters: MaximumRangeSize.
|
21
|
-
Lint/MissingCopEnableDirective:
|
22
|
-
Exclude:
|
23
|
-
- 'lib/aruba/configuration.rb'
|
24
|
-
- 'lib/aruba/processes/spawn_process.rb'
|
25
|
-
|
26
19
|
# Offense count: 2
|
27
20
|
# Configuration parameters: CheckForMethodsWithNoSideEffects.
|
28
21
|
Lint/Void:
|
@@ -30,7 +23,7 @@ Lint/Void:
|
|
30
23
|
- 'lib/aruba/platforms/announcer.rb'
|
31
24
|
- 'lib/aruba/platforms/unix_environment_variables.rb'
|
32
25
|
|
33
|
-
# Offense count:
|
26
|
+
# Offense count: 29
|
34
27
|
Metrics/AbcSize:
|
35
28
|
Max: 116
|
36
29
|
|
@@ -38,22 +31,22 @@ Metrics/AbcSize:
|
|
38
31
|
# Configuration parameters: CountComments, ExcludedMethods.
|
39
32
|
# ExcludedMethods: refine
|
40
33
|
Metrics/BlockLength:
|
41
|
-
Max:
|
34
|
+
Max: 587
|
42
35
|
|
43
36
|
# Offense count: 2
|
44
37
|
# Configuration parameters: CountComments.
|
45
38
|
Metrics/ClassLength:
|
46
|
-
Max:
|
39
|
+
Max: 145
|
47
40
|
|
48
|
-
# Offense count:
|
41
|
+
# Offense count: 20
|
49
42
|
# Configuration parameters: CountComments, ExcludedMethods.
|
50
43
|
Metrics/MethodLength:
|
51
|
-
Max:
|
44
|
+
Max: 22
|
52
45
|
|
53
46
|
# Offense count: 2
|
54
47
|
# Configuration parameters: CountComments.
|
55
48
|
Metrics/ModuleLength:
|
56
|
-
Max:
|
49
|
+
Max: 175
|
57
50
|
|
58
51
|
# Offense count: 3
|
59
52
|
# Configuration parameters: CountKeywordArgs.
|
@@ -64,17 +57,29 @@ Metrics/ParameterLists:
|
|
64
57
|
Metrics/PerceivedComplexity:
|
65
58
|
Max: 10
|
66
59
|
|
60
|
+
# Offense count: 1
|
61
|
+
Naming/ConstantName:
|
62
|
+
Exclude:
|
63
|
+
- 'lib/aruba/platform.rb'
|
64
|
+
|
67
65
|
# Offense count: 5
|
68
|
-
# Configuration parameters:
|
69
|
-
#
|
66
|
+
# Configuration parameters: ForbiddenDelimiters.
|
67
|
+
# ForbiddenDelimiters: (?-mix:(^|\s)(EO[A-Z]{1}|END)(\s|$))
|
70
68
|
Naming/HeredocDelimiterNaming:
|
71
69
|
Exclude:
|
72
70
|
- 'lib/aruba/initializer.rb'
|
73
71
|
|
72
|
+
# Offense count: 1
|
73
|
+
# Configuration parameters: EnforcedStyleForLeadingUnderscores.
|
74
|
+
# SupportedStylesForLeadingUnderscores: disallowed, required, optional
|
75
|
+
Naming/MemoizedInstanceVariableName:
|
76
|
+
Exclude:
|
77
|
+
- 'lib/aruba/api/core.rb'
|
78
|
+
|
74
79
|
# Offense count: 16
|
75
80
|
# Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames.
|
76
|
-
# AllowedNames: io, id, to, by, on, in, at, ip, db
|
77
|
-
Naming/
|
81
|
+
# AllowedNames: io, id, to, by, on, in, at, ip, db, os
|
82
|
+
Naming/MethodParameterName:
|
78
83
|
Exclude:
|
79
84
|
- 'lib/aruba/aruba_path.rb'
|
80
85
|
- 'lib/aruba/config_wrapper.rb'
|
@@ -157,11 +162,10 @@ Style/IdenticalConditionalBranches:
|
|
157
162
|
Exclude:
|
158
163
|
- 'lib/aruba/hooks.rb'
|
159
164
|
|
160
|
-
# Offense count:
|
165
|
+
# Offense count: 7
|
161
166
|
# Cop supports --auto-correct.
|
162
167
|
Style/IfUnlessModifier:
|
163
168
|
Exclude:
|
164
|
-
- 'features/support/env.rb'
|
165
169
|
- 'lib/aruba/cucumber/command.rb'
|
166
170
|
- 'lib/aruba/matchers/collection/include_an_object.rb'
|
167
171
|
- 'lib/aruba/platforms/unix_environment_variables.rb'
|
@@ -186,8 +190,8 @@ Style/MethodMissingSuper:
|
|
186
190
|
|
187
191
|
# Offense count: 4
|
188
192
|
# Cop supports --auto-correct.
|
189
|
-
# Configuration parameters:
|
190
|
-
#
|
193
|
+
# Configuration parameters: AllowedMethods.
|
194
|
+
# AllowedMethods: be, be_a, be_an, be_between, be_falsey, be_kind_of, be_instance_of, be_truthy, be_within, eq, eql, end_with, include, match, raise_error, respond_to, start_with
|
191
195
|
Style/NestedParenthesizedCalls:
|
192
196
|
Exclude:
|
193
197
|
- 'spec/aruba/matchers/collection_spec.rb'
|
@@ -236,7 +240,7 @@ Style/Semicolon:
|
|
236
240
|
Exclude:
|
237
241
|
- 'lib/aruba/platforms/aruba_fixed_size_file_creator.rb'
|
238
242
|
|
239
|
-
# Offense count:
|
243
|
+
# Offense count: 40
|
240
244
|
# Cop supports --auto-correct.
|
241
245
|
# Configuration parameters: EnforcedStyle.
|
242
246
|
# SupportedStyles: only_raise, only_fail, semantic
|
@@ -250,7 +254,7 @@ Style/StderrPuts:
|
|
250
254
|
- 'Rakefile'
|
251
255
|
- 'lib/aruba/initializer.rb'
|
252
256
|
|
253
|
-
# Offense count:
|
257
|
+
# Offense count: 6
|
254
258
|
# Cop supports --auto-correct.
|
255
259
|
# Configuration parameters: MinSize.
|
256
260
|
# SupportedStyles: percent, brackets
|
data/.simplecov
CHANGED
@@ -1,10 +1,9 @@
|
|
1
|
-
# Run simplecov by default
|
2
|
-
SimpleCov.start unless ENV.key? 'ARUBA_NO_COVERAGE'
|
3
|
-
|
4
1
|
SimpleCov.configure do
|
2
|
+
# Activate branch coverage
|
3
|
+
enable_coverage :branch
|
4
|
+
|
5
5
|
# ignore this file
|
6
6
|
add_filter '.simplecov'
|
7
|
-
add_filter 'spec'
|
8
7
|
add_filter 'features'
|
9
8
|
|
10
9
|
# Rake tasks aren't tested with rspec
|
@@ -30,5 +29,8 @@ SimpleCov.configure do
|
|
30
29
|
|
31
30
|
# Specs are reported on to ensure that all examples are being run and all
|
32
31
|
# lets, befores, afters, etc are being used.
|
33
|
-
add_group 'Specs', 'spec'
|
32
|
+
add_group 'Specs', 'spec/'
|
34
33
|
end
|
34
|
+
|
35
|
+
# Run simplecov by default
|
36
|
+
SimpleCov.start unless ENV.key? 'ARUBA_NO_COVERAGE'
|
data/.travis.yml
CHANGED
@@ -1,10 +1,6 @@
|
|
1
|
-
# Use old Ubuntu distribution to avoid JRuby issues
|
2
|
-
dist: trusty
|
3
1
|
language: ruby
|
4
2
|
script: bundle exec rake test
|
5
|
-
|
6
|
-
- gem install bundler -v '< 2'
|
7
|
-
bundler_args: --without debug
|
3
|
+
cache: bundler
|
8
4
|
|
9
5
|
jobs:
|
10
6
|
include:
|
@@ -13,41 +9,28 @@ jobs:
|
|
13
9
|
os: linux
|
14
10
|
- rvm: ruby-head
|
15
11
|
os: osx
|
16
|
-
- rvm: 2.
|
12
|
+
- rvm: 2.7
|
17
13
|
os: linux
|
18
|
-
- rvm: 2.
|
14
|
+
- rvm: 2.7
|
19
15
|
os: osx
|
20
|
-
- rvm: 2.
|
16
|
+
- rvm: 2.6
|
21
17
|
os: linux
|
22
|
-
- rvm: 2.
|
18
|
+
- rvm: 2.6
|
23
19
|
os: osx
|
24
|
-
- rvm: 2.
|
20
|
+
- rvm: 2.5
|
25
21
|
os: linux
|
26
|
-
- rvm: 2.
|
22
|
+
- rvm: 2.5
|
27
23
|
os: osx
|
28
|
-
- rvm: 2.
|
24
|
+
- rvm: 2.4
|
29
25
|
os: linux
|
30
|
-
- rvm: 2.
|
26
|
+
- rvm: 2.4
|
31
27
|
os: osx
|
32
|
-
- rvm: 2.
|
28
|
+
- rvm: 2.4.0
|
33
29
|
os: linux
|
34
|
-
- rvm: jruby-9.
|
30
|
+
- rvm: jruby-9.2
|
35
31
|
os: linux
|
36
|
-
- rvm: jruby-9.2
|
37
|
-
os: linux
|
38
|
-
- rvm: jruby-9.2.8.0
|
32
|
+
- rvm: jruby-9.2
|
39
33
|
os: osx
|
40
|
-
env: JAVA_OPTS="
|
41
|
-
--add-opens java.base/java.io=ALL-UNNAMED
|
42
|
-
--add-opens java.base/java.lang=ALL-UNNAMED
|
43
|
-
--add-opens java.base/java.util=ALL-UNNAMED
|
44
|
-
--add-opens java.base/java.lang.reflect=ALL-UNNAMED
|
45
|
-
--add-opens java.base/java.security.cert=ALL-UNNAMED
|
46
|
-
--add-opens java.base/java.security=ALL-UNNAMED
|
47
|
-
--add-opens java.base/javax.crypto=ALL-UNNAMED
|
48
|
-
--add-opens java.base/sun.nio.ch=ALL-UNNAMED
|
49
|
-
--add-opens java.base/java.nio.channels.spi=ALL-UNNAMED
|
50
|
-
--illegal-access=warn"
|
51
34
|
script: bundle exec rake spec
|
52
35
|
- stage: lint
|
53
36
|
script: bundle exec rake lint
|
@@ -60,14 +43,20 @@ jobs:
|
|
60
43
|
branches:
|
61
44
|
only:
|
62
45
|
- master
|
63
|
-
- still
|
64
46
|
|
65
47
|
# notifications:
|
66
48
|
# slack: cucumberbdd:oQFVhzsx4R94KWmjlejAJYnM
|
67
49
|
env:
|
68
50
|
global:
|
69
51
|
- secure: l8uznA5K4K9mZ1krmP3lTMD8WcJ32qGxFOR3jubKHcOBSLB4xSzU2aIqjyJdO+rLzebkwamhJc8pGSIWOUDQYvFiX7splK+uEkbBJ5huAhXtLF4Qgl86bCWbEXYzN7rvn0DQfpJAovyFMNRMnfo70XhwqWzFsaYa7Z0YbqYsJE4=
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
52
|
+
- JAVA_OPTS="
|
53
|
+
--add-opens java.base/java.io=ALL-UNNAMED
|
54
|
+
--add-opens java.base/java.lang=ALL-UNNAMED
|
55
|
+
--add-opens java.base/java.util=ALL-UNNAMED
|
56
|
+
--add-opens java.base/java.lang.reflect=ALL-UNNAMED
|
57
|
+
--add-opens java.base/java.security.cert=ALL-UNNAMED
|
58
|
+
--add-opens java.base/java.security=ALL-UNNAMED
|
59
|
+
--add-opens java.base/javax.crypto=ALL-UNNAMED
|
60
|
+
--add-opens java.base/sun.nio.ch=ALL-UNNAMED
|
61
|
+
--add-opens java.base/java.nio.channels.spi=ALL-UNNAMED
|
62
|
+
--illegal-access=warn"
|
data/CHANGELOG.md
CHANGED
@@ -2,12 +2,41 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
-
This project
|
5
|
+
This project adheres to [Semantic Versioning][1].
|
6
6
|
|
7
7
|
This document is formatted according to the principles of [Keep A CHANGELOG][2].
|
8
8
|
|
9
|
+
## [1.0.0]
|
10
|
+
|
11
|
+
### Breaking changes compared to Aruba 0.14.x
|
12
|
+
|
13
|
+
* Support for Ruby 2.3 and lower has been dropped
|
14
|
+
* Deprecated functionality has been removed
|
15
|
+
* The home directory is set to aruba's working directory by default
|
16
|
+
|
17
|
+
### Detailed changes compared to 1.0.0.pre.alpha.5
|
18
|
+
|
19
|
+
* Update simplecov ([#704] by [mvz])
|
20
|
+
* Several cuke improvements ([#703] by [mvz])
|
21
|
+
* Find relative commands from the current Aruba directory ([#702] by [mvz])
|
22
|
+
* Update development dependencies ([#701] by [mvz])
|
23
|
+
* Clean up linting and fix environment nesting ([#698] by [mvz])
|
24
|
+
* Update build configuration ([#696] by [mvz])
|
25
|
+
* Fix cd behavior with absolute paths and home directory ([#692] by [mvz])
|
26
|
+
* Improve `expand_path` warnings ([#687] by [deivid-rodriguez])
|
27
|
+
* Remove unneeded appveyor step ([#690] by [deivid-rodriguez])
|
28
|
+
* Fix travis.yml lint task ([#689] by [deivid-rodriguez])
|
29
|
+
* Fix cucumber deprecations ([#688] by [deivid-rodriguez])
|
30
|
+
* Update gemspec: Metadata and RDoc options ([#686] by [mvz])
|
31
|
+
* Update dependencies and fix RuboCop offenses ([#683] by [mvz])
|
32
|
+
* Init: Conditionally prefix the `gem aruba` line with a carriage return ([#570] by [xtrasimplicity])
|
33
|
+
* Update supported set of rubies([#679] by [mvz])
|
34
|
+
|
9
35
|
## [1.0.0.pre.alpha.5]
|
10
36
|
|
37
|
+
* Improve command failure message ([#675] by [deivid-rodriguez])
|
38
|
+
* Bump childprocess dependency ([#674] by [mvz])
|
39
|
+
* Suppress keyword argument warnings in Ruby 2.7 ([#672] by [koic])
|
11
40
|
* Refactor: Uncouple some of aruba's step definition code ([#666] by [luke-hill])
|
12
41
|
* Fix several JRuby build issues
|
13
42
|
([bb770e2e](https://github.com/cucumber/aruba/commit/bb770e2e82ec09807b07eed1f4a124612eeee3f4),
|
@@ -196,6 +225,15 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
196
225
|
"""
|
197
226
|
And the stderr should not contain anything
|
198
227
|
|
228
|
+
## [0.14.14]
|
229
|
+
|
230
|
+
* Support Ruby 2.7 ([#677])
|
231
|
+
|
232
|
+
## [0.14.13]
|
233
|
+
|
234
|
+
* Loosen dependency on thor ([#676])
|
235
|
+
* Mark setting of `root_directory` as deprecated in documentation ([#571])
|
236
|
+
|
199
237
|
## [0.14.12]
|
200
238
|
|
201
239
|
* Loosen dependency on childprocess ([#673])
|
@@ -379,7 +417,7 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
379
417
|
|
380
418
|
## [0.10.0]
|
381
419
|
|
382
|
-
* Fix
|
420
|
+
* Fix `"#exit_timeout" is deprecated` error ([#314])
|
383
421
|
|
384
422
|
## [0.10.0.pre2]
|
385
423
|
|
@@ -434,32 +472,32 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
434
472
|
|
435
473
|
* Improve documentation for filesystem api and move it to feature tests
|
436
474
|
* Add logger to aruba. Its output can be captured by rspec.
|
437
|
-
* Fix incorrect deprecation message for check_file_presence ([#292])
|
475
|
+
* Fix incorrect deprecation message for `check_file_presence` ([#292])
|
438
476
|
* Fix for Gemfile excludes windows for many gems ([#282])
|
439
477
|
* Make feature tests compatible with ruby 1.9.2
|
440
478
|
* Gather disk usage for file(s) ([#294])
|
441
|
-
* Replace keep_ansi
|
479
|
+
* Replace `keep_ansi` config option by `remove_ansi_escape_sequences` option
|
442
480
|
* Split up `#unescape` into `#extract_text` and `#unescape_text`
|
443
481
|
* Use `UnixPlatform` and `WindowsPlatform` to make code for different platforms
|
444
482
|
maintainable
|
445
|
-
* Work around `ENV`-bug in
|
446
|
-
* Speed up test on
|
483
|
+
* Work around `ENV`-bug in JRuby by using `#dup` on `ENV.to_h` ([jruby/jruby#316])
|
484
|
+
* Speed up test on JRuby by using `--dev`-flag
|
447
485
|
* Work around problems when copying files with `cp` on MRI-ruby 1.9.2
|
448
|
-
* Add cmd.exe /c for SpawnProcess on Windows ([#302])
|
486
|
+
* Add `cmd.exe /c` for SpawnProcess on Windows ([#302])
|
449
487
|
* Split up `#which` for Windows and Unix/Linux ([#304])
|
450
|
-
* Add `aruba console
|
488
|
+
* Add `aruba console` command to play around with aruba ([#305])
|
451
489
|
|
452
490
|
|
453
491
|
## [0.8.1]
|
454
492
|
|
455
493
|
* Fix problem if working directory of aruba does not exist ([#286])
|
456
|
-
* Re-
|
494
|
+
* Re-add removed method `only_processes`
|
457
495
|
* Fixed problem with last exit status
|
458
496
|
* Added appveyor to run tests of aruba on Windows ([#287])
|
459
497
|
* Make the home directory configurable and use Around/around-hook to apply it
|
460
498
|
* Add announcer to output the full environment before a command is run
|
461
|
-
* Use prepend_environment_variable to modify PATH for rspec integration
|
462
|
-
* Add VERSION
|
499
|
+
* Use `prepend_environment_variable` to modify PATH for rspec integration
|
500
|
+
* Add `VERSION` constant to aruba and use it for code which should be activated on >= 1.0.0
|
463
501
|
|
464
502
|
## [0.8.0]
|
465
503
|
|
@@ -510,9 +548,9 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
510
548
|
* Better isolation for environment variable manipulation - really helpful from 1.0.0 on
|
511
549
|
* Move configuration files like `jruby.rb` to `aruba/config/`-directory
|
512
550
|
* Change default exit timeout to 15 seconds to work around long running processes on travis
|
513
|
-
* Use of instance variables like
|
514
|
-
|
515
|
-
config.exit_timeout = 10` etc. for this.
|
551
|
+
* Use of instance variables like `@aruba_timeout_seconds` or
|
552
|
+
`@aruba_io_wait_seconds` are deprecated.
|
553
|
+
Use `Aruba.configure do |config| config.exit_timeout = 10` etc. for this.
|
516
554
|
|
517
555
|
## [0.7.4]
|
518
556
|
* Really Fixed post install message
|
@@ -526,7 +564,7 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
526
564
|
|
527
565
|
## [0.7.1]
|
528
566
|
|
529
|
-
* Do not break if
|
567
|
+
* Do not break if `@interactive` is used
|
530
568
|
|
531
569
|
## [0.7.0]
|
532
570
|
|
@@ -602,12 +640,12 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
602
640
|
|
603
641
|
## [0.4.9]
|
604
642
|
|
605
|
-
* Rename before_run hook to before_cmd ([mattwynne])
|
643
|
+
* Rename `before_run` hook to `before_cmd` ([mattwynne])
|
606
644
|
* Fix 1.8.7 compatibility ([#95], [davetron5000])
|
607
645
|
|
608
646
|
## [0.4.8]
|
609
647
|
|
610
|
-
* Add before_run hook ([mattwynne])
|
648
|
+
* Add `before_run` hook ([mattwynne])
|
611
649
|
* Add JRuby performance tweaks ([#93], [myronmarston], [mattwynne])
|
612
650
|
* Invalid/Corrupt spec file for 0.4.7 - undefined method call for nil:Nilclass ([#47], [aslakhellesoy])
|
613
651
|
|
@@ -620,7 +658,7 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
620
658
|
## [0.4.6]
|
621
659
|
|
622
660
|
* Upgraded deps to latest gems. ([aslakhellesoy])
|
623
|
-
* Added Regexp support to Aruba::Api#assert_no_partial_output
|
661
|
+
* Added Regexp support to `Aruba::Api#assert_no_partial_output`. ([aslakhellesoy])
|
624
662
|
|
625
663
|
## [0.4.5]
|
626
664
|
|
@@ -654,17 +692,17 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
654
692
|
|
655
693
|
## [0.3.7]
|
656
694
|
|
657
|
-
* Make Aruba::Api#get_process return the last executed process with passed cmd
|
695
|
+
* Make `Aruba::Api#get_process` return the last executed process with passed cmd
|
658
696
|
([greyblake])
|
659
697
|
* Replace announce with puts to comply with cucumber 0.10.6 ([aslakhellesoy])
|
660
698
|
* Fix childprocess STDIN to be synchronous ([#40], [#71], [lithium3141])
|
661
699
|
|
662
700
|
## [0.3.6]
|
663
701
|
|
664
|
-
* Changed default value of
|
702
|
+
* Changed default value of `@aruba_timeout_seconds` from 1 to 3. ([aslakhellesoy])
|
665
703
|
* Separate hooks and steps to make it easier to build your own steps on top of
|
666
704
|
Aruba's API ([msassak])
|
667
|
-
*
|
705
|
+
* `@no-clobber` to prevent cleanup before each scenario ([msassak])
|
668
706
|
|
669
707
|
## [0.3.5]
|
670
708
|
|
@@ -694,19 +732,19 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
694
732
|
## [0.3.0]
|
695
733
|
|
696
734
|
* Remove latency introduced in the 0.2.8 release ([#42], [msassak])
|
697
|
-
* New stepdef Then /^the stdout should contain:$/ do |partial_output
|
735
|
+
* New stepdef `Then /^the stdout should contain:$/ do |partial_output|` ([aslakhellesoy])
|
698
736
|
* Quotes (") and newline (\n) in step arguments no longer need to be backslash-escaped. ([aslakhellesoy])
|
699
737
|
|
700
738
|
## [0.2.8]
|
701
739
|
|
702
|
-
* Replaced background_process with childprocess
|
740
|
+
* Replaced `background_process` with `childprocess`, a cross-platform process control
|
703
741
|
library. This will allow Aruba to run on Windows and JRuby in addition to \*nix
|
704
742
|
MRI. ([#16], [#27], [#31], [msassak], [jarib], [mattwynne], [aknuds1])
|
705
743
|
|
706
744
|
## [0.2.7]
|
707
745
|
|
708
746
|
* Upgrade to Cucumber 0.10.0. ([aslakhellesoy])
|
709
|
-
* require 'aruba' does nothing - you have to require 'aruba/cucumber' now. This
|
747
|
+
* `require 'aruba'` does nothing - you have to `require 'aruba/cucumber'` now. This
|
710
748
|
is to prevent bundler from loading it when we don't want to. ([aslakhellesoy])
|
711
749
|
* Outputting a lot of data causes process to time out ([#30], [msassak])
|
712
750
|
|
@@ -836,6 +874,8 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
836
874
|
<!-- Contributors -->
|
837
875
|
|
838
876
|
[AdrieanKhisbe]: https://github.com/AdrieanKhisbe
|
877
|
+
[Heinrich]: https://github.com/Heinrich
|
878
|
+
[JonRowe]: https://github.com/JonRowe
|
839
879
|
[LTe]: https://github.com/LTe
|
840
880
|
[aeden]: https://github.com/aeden
|
841
881
|
[aknuds1]: https://github.com/aknuds1
|
@@ -846,19 +886,18 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
846
886
|
[cllns]: https://github.com/cllns
|
847
887
|
[davetron5000]: https://github.com/davetron5000
|
848
888
|
[dchelimsky]: https://github.com/dchelimsky
|
889
|
+
[deivid-rodriguez]: https://github.com/deivid-rodriguez
|
849
890
|
[doudou]: https://github.com/doudou
|
850
891
|
[e2]: https://github.com/e2
|
851
892
|
[greyblake]: https://github.com/greyblake
|
852
893
|
[grosser]: https://github.com/grosser
|
853
894
|
[hectcastro]: https://github.com/hectcastro
|
854
|
-
[Heinrich]: https://github.com/Heinrich
|
855
895
|
[jarib]: https://github.com/jarib
|
856
896
|
[jarl-dk]: https://github.com/jarl-dk
|
857
897
|
[jaysonesmith]: https://github.com/jaysonesmith
|
858
|
-
[JonRowe]: https://github.com/JonRowe
|
859
898
|
[junaruga]: https://github.com/junaruga
|
899
|
+
[koic]: https://github.com/koic
|
860
900
|
[lithium3141]: https://github.com/lithium3141
|
861
|
-
[LTe]: https://github.com/LTe
|
862
901
|
[luke-hill]: https://github.com/luke-hill
|
863
902
|
[mattwynne]: https://github.com/mattwynne
|
864
903
|
[maxmeyer]: https://github.com/maxmeyer
|
@@ -883,7 +922,26 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
883
922
|
|
884
923
|
<!-- issues & pull requests -->
|
885
924
|
|
925
|
+
[#704]: https://github.com/cucumber/aruba/pull/704
|
926
|
+
[#703]: https://github.com/cucumber/aruba/pull/703
|
927
|
+
[#702]: https://github.com/cucumber/aruba/pull/702
|
928
|
+
[#701]: https://github.com/cucumber/aruba/pull/701
|
929
|
+
[#698]: https://github.com/cucumber/aruba/pull/698
|
930
|
+
[#696]: https://github.com/cucumber/aruba/pull/696
|
931
|
+
[#692]: https://github.com/cucumber/aruba/pull/692
|
932
|
+
[#690]: https://github.com/cucumber/aruba/pull/690
|
933
|
+
[#689]: https://github.com/cucumber/aruba/pull/689
|
934
|
+
[#688]: https://github.com/cucumber/aruba/pull/688
|
935
|
+
[#687]: https://github.com/cucumber/aruba/pull/687
|
936
|
+
[#686]: https://github.com/cucumber/aruba/pull/686
|
937
|
+
[#683]: https://github.com/cucumber/aruba/pull/683
|
938
|
+
[#679]: https://github.com/cucumber/aruba/pull/679
|
939
|
+
[#677]: https://github.com/cucumber/aruba/pull/677
|
940
|
+
[#676]: https://github.com/cucumber/aruba/pull/676
|
941
|
+
[#675]: https://github.com/cucumber/aruba/pull/675
|
942
|
+
[#674]: https://github.com/cucumber/aruba/pull/674
|
886
943
|
[#673]: https://github.com/cucumber/aruba/pull/673
|
944
|
+
[#672]: https://github.com/cucumber/aruba/pull/672
|
887
945
|
[#671]: https://github.com/cucumber/aruba/pull/671
|
888
946
|
[#669]: https://github.com/cucumber/aruba/pull/669
|
889
947
|
[#668]: https://github.com/cucumber/aruba/pull/668
|
@@ -947,6 +1005,8 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
947
1005
|
[#578]: https://github.com/cucumber/aruba/pull/578
|
948
1006
|
[#575]: https://github.com/cucumber/aruba/pull/575
|
949
1007
|
[#572]: https://github.com/cucumber/aruba/pull/572
|
1008
|
+
[#571]: https://github.com/cucumber/aruba/pull/571
|
1009
|
+
[#570]: https://github.com/cucumber/aruba/pull/570
|
950
1010
|
[#562]: https://github.com/cucumber/aruba/pull/562
|
951
1011
|
[#561]: https://github.com/cucumber/aruba/pull/561
|
952
1012
|
[#560]: https://github.com/cucumber/aruba/pull/560
|
@@ -1126,12 +1186,18 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
1126
1186
|
|
1127
1187
|
<!-- Releases -->
|
1128
1188
|
|
1129
|
-
[Unreleased]: https://github.com/cucumber/aruba/compare/v1.0.0
|
1189
|
+
[Unreleased]: https://github.com/cucumber/aruba/compare/v1.0.0...master
|
1190
|
+
[1.0.0]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.5...v1.0.0
|
1130
1191
|
[1.0.0.pre.alpha.5]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.4...v1.0.0.pre.alpha.5
|
1131
1192
|
[1.0.0.pre.alpha.4]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.3...v1.0.0.pre.alpha.4
|
1132
1193
|
[1.0.0.pre.alpha.3]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.2...v1.0.0.pre.alpha.3
|
1133
1194
|
[1.0.0.pre.alpha.2]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.1...v1.0.0.pre.alpha.2
|
1134
1195
|
[1.0.0.pre.alpha.1]: https://github.com/cucumber/aruba/compare/v0.14.1...v1.0.0.pre.alpha.1
|
1196
|
+
[0.14.14]: https://github.com/cucumber/aruba/compare/v0.14.13...v0.14.14
|
1197
|
+
[0.14.13]: https://github.com/cucumber/aruba/compare/v0.14.12...v0.14.13
|
1198
|
+
[0.14.12]: https://github.com/cucumber/aruba/compare/v0.14.11...v0.14.12
|
1199
|
+
[0.14.11]: https://github.com/cucumber/aruba/compare/v0.14.10...v0.14.11
|
1200
|
+
[0.14.10]: https://github.com/cucumber/aruba/compare/v0.14.9...v0.14.10
|
1135
1201
|
[0.14.9]: https://github.com/cucumber/aruba/compare/v0.14.8...v0.14.9
|
1136
1202
|
[0.14.8]: https://github.com/cucumber/aruba/compare/v0.14.7...v0.14.8
|
1137
1203
|
[0.14.7]: https://github.com/cucumber/aruba/compare/v0.14.6...v0.14.7
|