aruba 1.0.0.pre.alpha.2 → 1.0.0.pre.alpha.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/PULL_REQUEST_TEMPLATE.md +2 -1
- data/.rubocop.yml +6 -181
- data/.rubocop_todo.yml +364 -0
- data/.travis.yml +63 -34
- data/.yardopts +3 -0
- data/CHANGELOG.md +1121 -0
- data/CONTRIBUTING.md +179 -78
- data/Gemfile +29 -44
- data/README.md +41 -11
- data/Rakefile +35 -35
- data/appveyor.yml +6 -5
- data/aruba.gemspec +14 -16
- data/bin/console +2 -11
- data/cucumber.yml +0 -7
- data/fixtures/cli-app/README.md +1 -1
- data/fixtures/cli-app/Rakefile +1 -1
- data/fixtures/cli-app/cli-app.gemspec +1 -0
- data/fixtures/cli-app/lib/cli/app/suppress_simple_cov_output.rb +3 -3
- data/fixtures/cli-app/lib/cli/app/version.rb +1 -1
- data/fixtures/empty-app/Rakefile +1 -1
- data/fixtures/empty-app/cli-app.gemspec +1 -0
- data/fixtures/empty-app/lib/cli/app/version.rb +1 -1
- data/fixtures/getting-started-app/Gemfile +1 -1
- data/lib/aruba/api.rb +3 -10
- data/lib/aruba/api/bundler.rb +16 -0
- data/lib/aruba/api/commands.rb +249 -0
- data/lib/aruba/api/core.rb +24 -10
- data/lib/aruba/api/environment.rb +12 -7
- data/lib/aruba/api/filesystem.rb +22 -20
- data/lib/aruba/api/text.rb +3 -9
- data/lib/aruba/aruba_path.rb +3 -18
- data/lib/aruba/basic_configuration.rb +3 -19
- data/lib/aruba/cli.rb +1 -1
- data/lib/aruba/colorizer.rb +33 -33
- data/lib/aruba/command.rb +4 -0
- data/lib/aruba/config_wrapper.rb +1 -1
- data/lib/aruba/configuration.rb +78 -0
- data/lib/aruba/console.rb +5 -5
- data/lib/aruba/console/help.rb +1 -1
- data/lib/aruba/cucumber.rb +0 -1
- data/lib/aruba/cucumber/command.rb +55 -115
- data/lib/aruba/cucumber/environment.rb +1 -1
- data/lib/aruba/cucumber/file.rb +9 -21
- data/lib/aruba/cucumber/hooks.rb +6 -62
- data/lib/aruba/event_bus/name_resolver.rb +1 -2
- data/lib/aruba/hooks.rb +1 -1
- data/lib/aruba/initializer.rb +3 -3
- data/lib/aruba/matchers/base/base_matcher.rb +2 -2
- data/lib/aruba/matchers/base/message_indenter.rb +19 -0
- data/lib/aruba/matchers/base/object_formatter.rb +2 -2
- data/lib/aruba/matchers/collection/include_an_object.rb +7 -9
- data/lib/aruba/matchers/command/be_successfully_executed.rb +2 -4
- data/lib/aruba/matchers/command/have_exit_status.rb +1 -1
- data/lib/aruba/matchers/command/have_finished_in_time.rb +2 -4
- data/lib/aruba/matchers/command/have_output.rb +9 -4
- data/lib/aruba/matchers/command/have_output_on_stderr.rb +1 -1
- data/lib/aruba/matchers/command/have_output_on_stdout.rb +1 -1
- data/lib/aruba/matchers/command/have_output_size.rb +1 -1
- data/lib/aruba/matchers/directory/be_an_existing_directory.rb +4 -6
- data/lib/aruba/matchers/directory/have_sub_directory.rb +4 -6
- data/lib/aruba/matchers/file/be_a_command_found_in_path.rb +2 -4
- data/lib/aruba/matchers/file/be_an_existing_executable.rb +4 -6
- data/lib/aruba/matchers/file/be_an_existing_file.rb +4 -6
- data/lib/aruba/matchers/file/have_file_content.rb +4 -4
- data/lib/aruba/matchers/file/have_file_size.rb +6 -8
- data/lib/aruba/matchers/file/have_same_file_content.rb +9 -12
- data/lib/aruba/matchers/path/a_path_matching_pattern.rb +2 -4
- data/lib/aruba/matchers/path/be_an_absolute_path.rb +3 -5
- data/lib/aruba/matchers/path/be_an_existing_path.rb +4 -6
- data/lib/aruba/matchers/path/have_permissions.rb +6 -8
- data/lib/aruba/matchers/string/include_output_string.rb +8 -10
- data/lib/aruba/matchers/string/match_output_string.rb +9 -11
- data/lib/aruba/matchers/string/output_string_eq.rb +7 -9
- data/lib/aruba/platform.rb +0 -1
- data/lib/aruba/platforms/announcer.rb +26 -70
- data/lib/aruba/platforms/aruba_file_creator.rb +1 -1
- data/lib/aruba/platforms/aruba_fixed_size_file_creator.rb +2 -2
- data/lib/aruba/platforms/aruba_logger.rb +22 -2
- data/lib/aruba/platforms/command_monitor.rb +2 -125
- data/lib/aruba/platforms/filesystem_status.rb +9 -9
- data/lib/aruba/platforms/local_environment.rb +2 -2
- data/lib/aruba/platforms/simple_table.rb +3 -3
- data/lib/aruba/platforms/unix_command_string.rb +7 -4
- data/lib/aruba/platforms/unix_environment_variables.rb +9 -13
- data/lib/aruba/platforms/unix_platform.rb +2 -27
- data/lib/aruba/platforms/unix_which.rb +2 -1
- data/lib/aruba/platforms/windows_command_string.rb +20 -7
- data/lib/aruba/platforms/windows_environment_variables.rb +35 -30
- data/lib/aruba/platforms/windows_which.rb +4 -3
- data/lib/aruba/processes/basic_process.rb +11 -15
- data/lib/aruba/processes/debug_process.rb +5 -0
- data/lib/aruba/processes/in_process.rb +17 -8
- data/lib/aruba/processes/spawn_process.rb +35 -23
- data/lib/aruba/rspec.rb +9 -22
- data/lib/aruba/runtime.rb +7 -5
- data/lib/aruba/setup.rb +6 -4
- data/lib/aruba/tasks/docker_helpers.rb +1 -1
- data/lib/aruba/version.rb +1 -1
- metadata +37 -57
- data/History.md +0 -612
- data/bin/bootstrap +0 -34
- data/fixtures/spawn_process/stderr.sh +0 -3
- data/lib/aruba/api/command.rb +0 -309
- data/lib/aruba/api/deprecated.rb +0 -895
- data/lib/aruba/api/rvm.rb +0 -44
- data/lib/aruba/config.rb +0 -101
- data/lib/aruba/cucumber/rvm.rb +0 -3
- data/lib/aruba/in_process.rb +0 -14
- data/lib/aruba/jruby.rb +0 -4
- data/lib/aruba/matchers/path/match_path_pattern.rb +0 -41
- data/lib/aruba/matchers/rspec_matcher_include_regexp.rb +0 -25
- data/lib/aruba/spawn_process.rb +0 -11
data/.travis.yml
CHANGED
@@ -1,45 +1,74 @@
|
|
1
|
-
sudo: false
|
2
1
|
language: ruby
|
3
|
-
script:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
- 2.2.7
|
10
|
-
- 2.3.4
|
11
|
-
- 2.4.1
|
12
|
-
- ruby-head
|
13
|
-
- jruby
|
14
|
-
- jruby-20mode
|
15
|
-
- jruby-21mode
|
16
|
-
- jruby-9.1.12.0
|
17
|
-
matrix:
|
2
|
+
script: bundle exec rake test
|
3
|
+
before_install:
|
4
|
+
- gem install bundler -v '< 2'
|
5
|
+
bundler_args: --without development debug
|
6
|
+
|
7
|
+
jobs:
|
18
8
|
include:
|
19
|
-
- rvm:
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
9
|
+
- rvm: ruby-head
|
10
|
+
stage: test
|
11
|
+
os: linux
|
12
|
+
- rvm: ruby-head
|
13
|
+
os: osx
|
14
|
+
- rvm: 2.6.3
|
15
|
+
os: linux
|
16
|
+
- rvm: 2.6.3
|
17
|
+
os: osx
|
18
|
+
- rvm: 2.5.5
|
19
|
+
os: linux
|
20
|
+
- rvm: 2.5.5
|
21
|
+
os: osx
|
22
|
+
- rvm: 2.4.6
|
23
|
+
os: linux
|
24
|
+
- rvm: 2.4.6
|
25
|
+
os: osx
|
26
|
+
- rvm: 2.3.8
|
27
|
+
os: linux
|
28
|
+
- rvm: 2.3.8
|
29
|
+
os: osx
|
30
|
+
- rvm: 2.2
|
31
|
+
os: linux
|
32
|
+
- rvm: 2.2
|
33
|
+
os: osx
|
34
|
+
- rvm: jruby
|
35
|
+
os: linux
|
36
|
+
- rvm: jruby-9.2.7.0
|
37
|
+
os: linux
|
38
|
+
- rvm: jruby-9.2.7.0
|
39
|
+
os: osx
|
40
|
+
- stage: lint
|
41
|
+
script: bundle exec rake lint
|
42
|
+
rvm: 2.6.3
|
43
|
+
os: linux
|
25
44
|
allow_failures:
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
- rvm: jruby-9.1.12.0-20mode
|
30
|
-
env: JRUBY_OPTS='--dev'
|
31
|
-
- rvm: jruby-9.1.12.0-21mode
|
32
|
-
env: JRUBY_OPTS='--dev'
|
45
|
+
- rvm: ruby-head
|
46
|
+
- rvm: jruby
|
47
|
+
- rvm: jruby-9.2.7.0
|
33
48
|
fast_finish: true
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
49
|
+
|
50
|
+
branches:
|
51
|
+
only:
|
52
|
+
- master
|
53
|
+
- still
|
54
|
+
|
55
|
+
# notifications:
|
56
|
+
# slack: cucumberbdd:oQFVhzsx4R94KWmjlejAJYnM
|
38
57
|
env:
|
39
58
|
global:
|
40
59
|
- secure: l8uznA5K4K9mZ1krmP3lTMD8WcJ32qGxFOR3jubKHcOBSLB4xSzU2aIqjyJdO+rLzebkwamhJc8pGSIWOUDQYvFiX7splK+uEkbBJ5huAhXtLF4Qgl86bCWbEXYzN7rvn0DQfpJAovyFMNRMnfo70XhwqWzFsaYa7Z0YbqYsJE4=
|
41
|
-
-
|
60
|
+
# Travis by default also have "-Dcext.enabled=false" set in
|
61
|
+
# JRUBY_OPTS, but JRuby 9 does not support C extensions at all
|
62
|
+
# so it issues warning that will mess up the sterr checks.
|
63
|
+
- JRUBY_OPTS="--dev --debug"
|
64
|
+
# Somehow a "ASCII-8BIT to UTF-8 conversion error" appears for
|
65
|
+
# JRuby 9
|
66
|
+
- LC_ALL=en_US.UTF-8
|
67
|
+
- LANG=en_US.UTF-8
|
68
|
+
- LANGUAGE=en_US.UTF-8
|
69
|
+
|
42
70
|
cache: apt
|
71
|
+
|
43
72
|
addons:
|
44
73
|
apt:
|
45
74
|
packages:
|
data/.yardopts
CHANGED
data/CHANGELOG.md
ADDED
@@ -0,0 +1,1121 @@
|
|
1
|
+
# CHANGELOG
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
|
5
|
+
This project will adhere to [Semantic Versioning][1] once version 1.0.0 is released.
|
6
|
+
|
7
|
+
This document is formatted according to the principles of [Keep A CHANGELOG][2].
|
8
|
+
|
9
|
+
## [1.0.0.pre.alpha.3]
|
10
|
+
|
11
|
+
### Added
|
12
|
+
|
13
|
+
* Allow `#expand_path` to be used with absolute paths. This will emit a warning,
|
14
|
+
which can be silenced with a configuration option ([#540] by [mvz])
|
15
|
+
* Allow decimal seconds in Cucumber steps that set Aruba timeout values
|
16
|
+
([#544] by [mvz])
|
17
|
+
* Make `have_file_content` diffable ([#562] by [cllns])
|
18
|
+
* Restore `@disable-bundler` hook ([#560] by [mvz])
|
19
|
+
|
20
|
+
### Changed
|
21
|
+
|
22
|
+
* Improve documentation for users and developers ([#454], [#456], [#457], [#460],
|
23
|
+
[#459], [#461], [#475], [#494] by [olleolleolle], [maxmeyer], [mvz])
|
24
|
+
* Make forgetting `setup_aruba` a hard failure ([#510] by [mvz])
|
25
|
+
* Update dependencies ([#511], [#541], [#553] by [mvz], [#528] by [maxmeyer], [#615] by [luke-hill] and [mvz])
|
26
|
+
* Improve output of `#have_output` matcher ([#546] by [mvz])
|
27
|
+
* Removed `have_same_file_content_like` and `a_file_with_same_content_like`
|
28
|
+
matchers, in favour of `have_same_file_content_as` and
|
29
|
+
`a_file_with_same_content_as` ([#555] by [xtrasimplicity])
|
30
|
+
|
31
|
+
### Removed
|
32
|
+
|
33
|
+
* Remove deprecated functionality ([#483], [#488], [#508] by [mvz])
|
34
|
+
* Remove broken RVM-related step definition ([#587] by [mvz])
|
35
|
+
* Drop support for Rubies below 2.2 ([#613] by [luke-hill])
|
36
|
+
|
37
|
+
### Bug fixes
|
38
|
+
|
39
|
+
* Fix UTF-8 issues with jRuby ([#462] by [stamhankar999])
|
40
|
+
* Allow slashes in file matching regex ([#512] by [scottj97] with [richardxia])
|
41
|
+
* Avoid duplicate output appearing in certain cases ([#517] by [maxmeyer] and [mvz])
|
42
|
+
* Fix `@no-clobber` breaking process management ([#535] by [doudou])
|
43
|
+
* Fix command spawning when spaces occur in the path ([#520] by [mvz])
|
44
|
+
* Make exit in in-process runner behave like real Kernel#exit ([#594] by [grosser])
|
45
|
+
* Improve compatibility with Windows ([#618] by [mvz])
|
46
|
+
- Upcase ENV keys on Windows
|
47
|
+
- Properly escape command and arguments on Windows
|
48
|
+
- Use correct path separator on Windows
|
49
|
+
|
50
|
+
### Developer experience and internal changes
|
51
|
+
|
52
|
+
* Fix test suite failures ([#452], [#497] by [maxmeyer] and [mvz]; [#487], [#509] by [mvz])
|
53
|
+
* Remove development gems for unsupported Rubinius platform ([#464] by [maxmeyer])
|
54
|
+
* Update `license_finder` dependency ([#466] by [maxmeyer])
|
55
|
+
* Restrict branches to run Travis ([#471] by [junaruga])
|
56
|
+
* Maintain Travis builds ([#476] by [maxmeyer]; [#493] [#532], [#536] by [mvz]; [#542], [#596], [#607] by [olleolleolle])
|
57
|
+
* Rename History.md to CHANGELOG.md and fix links and formatting, etc. to bring
|
58
|
+
it in line with [cucumber/cucumber#521] ([#481], [#482] by [jaysonesmith])
|
59
|
+
* Fix YARD documentation issues ([#491] [olleolleolle])
|
60
|
+
* Change maintainership ([#495], [#523] by [maxmeyer])
|
61
|
+
* Remove commented-out code ([#498] by [olleolleolle])
|
62
|
+
* Documentation fixups ([#504] by [roschaefer]; [#530] by [xtrasimplicity]; [#606] by [olleolleolle])
|
63
|
+
* Add 'stale' bot ([#507] by [maxmeyer]
|
64
|
+
* Update RuboCop and fix some offenses ([#514], [#537] by [mvz])
|
65
|
+
* Mark scenarios requiring external commands ([#515] [mvz])
|
66
|
+
* Remove cucumber features related to Aruba development ([#522], [#543], [#544] [mvz])
|
67
|
+
* Avoid long waits in feature suite ([#544] [mvz])
|
68
|
+
* Clean up internally used cuke tags and their implementation ([#548] by [mvz])
|
69
|
+
* Test with Ruby 2.5 and 2.6 ([#554] by [nicolasleger], [#578] by [mvz])
|
70
|
+
* Fix tests on Debian. ([#575] by [Heinrich])
|
71
|
+
* Update development dependencies ([#580] by [mvz])
|
72
|
+
* Start work on unifying still and master branches ([#583], [#584] by [mvz])
|
73
|
+
* Update CONTRIBUTING.md and drop bin/bootstrap ([#593] by [olleolleolle])
|
74
|
+
* Point to https version of GitHub repo URL ([#623] by [amatsuda])
|
75
|
+
|
76
|
+
## [1.0.0.pre.alpha.2]
|
77
|
+
|
78
|
+
* Update examples for usage in README
|
79
|
+
* Fix environment manipulation ([#442])
|
80
|
+
* Update supported ruby versions in .travis.yml ([#449])
|
81
|
+
* Use `license_finder` version which is usable for rubies `< 2.3` ([#451])
|
82
|
+
* Wrap test runners in `bundle exec` ([#447])
|
83
|
+
* Fix wording in README ([#445])
|
84
|
+
* Restructure README and upload feature files to cucumber.pro ([#444])
|
85
|
+
|
86
|
+
## [1.0.0.pre.alpha.1]
|
87
|
+
|
88
|
+
Note: These are changes w.r.t. Aruba version 0.14.1.
|
89
|
+
|
90
|
+
* Use new proposed structure for gems by bundler ([#439])
|
91
|
+
* Rename methods which run commands ([#438])
|
92
|
+
* Fix dependency error for install ([#427])
|
93
|
+
* Actually fail the build if rake test fails ([#433])
|
94
|
+
* Improve frozen-string-literals compatibility. ([#436])
|
95
|
+
* Fix running commands on Windows ([#387])
|
96
|
+
* Fix running commands on Windows ([#387])
|
97
|
+
* Set permissions to values which are supported on Windows ([#398], [#388])
|
98
|
+
* Remove Aruba::Reporting ([#389])
|
99
|
+
* Rename bin/cli to bin/aruba-test-cli to prevent name conflict ([#390])
|
100
|
+
* Drop support for `ruby < 1.9.3` and rubinius ([#385])
|
101
|
+
* Fixed wrong number of arguments in `Aruba::Platforms::WindowsEnvironmentVariables#delete`
|
102
|
+
([#349], [#358] by [e2])
|
103
|
+
* Fixed colors in `script/bootstrap` ( [#352], [e2])
|
104
|
+
* Fixed use of removed `Utils`-module ([#347], [e2])
|
105
|
+
* Fixed exception handler in BasicProcess ([#357], [e2])
|
106
|
+
* Fixed step to check for existing of files ([#375], [rubbish])
|
107
|
+
* Fixed unset instance variable ([#372], [e2])
|
108
|
+
* Added vision and hints to project README ([#366])
|
109
|
+
* Fixed setting environment variables on Windows ([#358], [e2])
|
110
|
+
* Fixed the logic to determine disk usage ([#359], [e2])
|
111
|
+
* Prefixed exception in `rescue`-call to make it fail with a proper error
|
112
|
+
message ([#376])
|
113
|
+
* Run and build aruba in isolated environment via docker ([#353] [e2], [#382])
|
114
|
+
* Run container with docker-compose without making docker-compose a required
|
115
|
+
dependency. Rake tasks read in the docker-compose.yml instead ([#382])
|
116
|
+
* Document developer rake tasks via cucumber features ([#382])
|
117
|
+
* Add more hints to CONTRIBUTING.md ([#382])
|
118
|
+
* Add TESTING.md (WIP) ([#382], [e2])
|
119
|
+
* Cleanup rake tasks via separate namespaces ([#382])
|
120
|
+
* Some more minor fixes ([#382])
|
121
|
+
* Don't run feature test if executable required for test is not installed
|
122
|
+
(python, bash, zsh, javac, ...) ([#382])
|
123
|
+
* Support for rubies older than 1.9.3 is discontinued - e.g 1.8.7 and 1.9.2
|
124
|
+
* aruba requires "cucumber 2" for the feature steps. The rest of aruba should
|
125
|
+
be usable by whatever testing framework you are using.
|
126
|
+
* Overwriting methods for configuration is discontinued. You need to use
|
127
|
+
`aruba.config.<variable>` or `Aruba.configure { |config| config.<variable>`
|
128
|
+
instead.
|
129
|
+
* "aruba/reporting" will be removed. Please use `@debug`-tag + `byebug`,
|
130
|
+
`debugger`, `pry` to troubleshoot your feature tests.
|
131
|
+
* Set environment variables will have only effect on `#run` and the like +
|
132
|
+
`#with_environment { }`.
|
133
|
+
* The process environment will be fully resetted between tests. Sharing state
|
134
|
+
via ENV['VAR'] = 'shared state' between tests will not be possible anymore.
|
135
|
+
Please make that obvious by using explicit steps or use the aruba API for
|
136
|
+
that.
|
137
|
+
* There will be a major cleanup for command execution. There will be only
|
138
|
+
`run` and `run_simple` left. `run_interactive` is replaced by `run`.
|
139
|
+
* Setting the root directory of aruba via method overwrite or configuration -
|
140
|
+
this should be your project root directory where the test suite is run.
|
141
|
+
* The direct use of "InProcess", "DebugProcess" and "SpawnProcess" is not
|
142
|
+
supported anymore. You need to use "Command" instead. But be careful, it has
|
143
|
+
a different API.
|
144
|
+
* HOME can be configured via `Aruba.configure {}` and defaults to
|
145
|
+
`File.join(aruba.config.root_directory, aruba.config.working_directory?)`
|
146
|
+
if `aruba/cucumber` or `aruba/rspec` is used.
|
147
|
+
* Use different working directories based on test suite - RSpec, Cucumber.
|
148
|
+
It's `tmp/rspec` and `tmp/cucumber` now to make sure they do not overwrite
|
149
|
+
the test results from each other.
|
150
|
+
* The use of `@interactive` is discontinued. You need to use
|
151
|
+
`#last_command_started`-method to get access to the interactively started
|
152
|
+
command.
|
153
|
+
* If multiple commands have been started, each output has to be check
|
154
|
+
separately
|
155
|
+
|
156
|
+
Scenario: Detect stdout from all processes
|
157
|
+
When I run `printf "hello world!\n"`
|
158
|
+
And I run `cat` interactively
|
159
|
+
And I type "hola"
|
160
|
+
And I type ""
|
161
|
+
Then the stdout should contain:
|
162
|
+
"""
|
163
|
+
hello world!
|
164
|
+
"""
|
165
|
+
And the stdout should contain:
|
166
|
+
"""
|
167
|
+
hola
|
168
|
+
"""
|
169
|
+
And the stderr should not contain anything
|
170
|
+
|
171
|
+
## [0.14.9]
|
172
|
+
|
173
|
+
* Formally deprecate `#use_clean_gemset` ([#597])
|
174
|
+
* Improve deprecation messages ([#601])
|
175
|
+
* Do not replace entire environment inside `#cd` block ([#604])
|
176
|
+
|
177
|
+
## [0.14.8]
|
178
|
+
|
179
|
+
* Deprecate `#run` and `#run_simple` in favor of `#run_command` and
|
180
|
+
`#run_command_and_stop` ([#585])
|
181
|
+
* Update dependencies, most notably loosening the dependency on `childprocess`
|
182
|
+
([#591])
|
183
|
+
* Properly warn about deprecated use of the run methods with one positional
|
184
|
+
option ([#588])
|
185
|
+
|
186
|
+
## [0.14.7]
|
187
|
+
|
188
|
+
* Fix Cucumber steps to use `have_same_file_content_as` matcher ([#572])
|
189
|
+
* Update dependencies, most notably loosening the dependency on `ffi` ([#581])
|
190
|
+
|
191
|
+
## [0.14.6]
|
192
|
+
|
193
|
+
* Document and fix `@disable-bundler` hook ([#561])
|
194
|
+
* Deprecate `have_same_file_content_like` and `a_file_with_same_content_like`
|
195
|
+
in favor of `have_same_file_content_as` and `a_file_with_same_content_as` ([#557])
|
196
|
+
|
197
|
+
## [0.14.5]
|
198
|
+
|
199
|
+
* Loosen dependency on child_process ([#551])
|
200
|
+
|
201
|
+
## [0.14.4]
|
202
|
+
|
203
|
+
* Fix command spawning when run in directories with spaces ([#490])
|
204
|
+
* Ensure setup is still done when using `@no-clobber` ([#529])
|
205
|
+
* Make `#expand_path` handle absolute paths correctly ([#486])
|
206
|
+
|
207
|
+
## [0.14.3]
|
208
|
+
|
209
|
+
* Fix path bug ([#422])
|
210
|
+
* Ensure non-deprecated methods do not use deprecated methods ([#489])
|
211
|
+
* Update dependency on childprocess ([#516])
|
212
|
+
* Fix encoding output on JRuby ([#516])
|
213
|
+
|
214
|
+
## [0.14.2]
|
215
|
+
|
216
|
+
* Handle empty JRUBY_OPTS on JRuby
|
217
|
+
|
218
|
+
## [0.14.1]
|
219
|
+
|
220
|
+
* Fixed bug in framework step
|
221
|
+
|
222
|
+
## [0.14.0]
|
223
|
+
|
224
|
+
* Add `<project_root>/exe` to search path for commands: This is the new default
|
225
|
+
if you setup a project with bundler.
|
226
|
+
* Add some more steps to modify environment
|
227
|
+
|
228
|
+
## [0.13.0]
|
229
|
+
|
230
|
+
* Add two new hooks for rspec and cucumber to make troubleshooting feature
|
231
|
+
files easier ([#338]):
|
232
|
+
* command_content: Outputs command content - helpful for scripts
|
233
|
+
* command_filesystem_status: Outputs information like group, owner, mode,
|
234
|
+
atime, mtime
|
235
|
+
* Add generator to create ad hoc script file ([#323], [AdrieanKhisbe])
|
236
|
+
* Colored announcer output similar to the color of `cucumber` tags: cyan
|
237
|
+
* Fixed bug in announcer. It announces infomation several times due to
|
238
|
+
duplicate announce-calls.
|
239
|
+
* Refactorings to internal `#simple_table`-method (internal)
|
240
|
+
* Refactored Announcer, now it supports blocks for announce as well (internal)
|
241
|
+
* Fix circular require warnings ([#339])
|
242
|
+
* Fix use of old instances variable "@io_wait" ([#341]). Now the
|
243
|
+
default value for io_wait_timeout can be set correctly.
|
244
|
+
* Make it possible to announce information on command error, using a new option
|
245
|
+
called `activate_announcer_on_command_failure` ([#335], [njam])
|
246
|
+
* Re-integrate `event-bus`-library into `aruba`-core ([#342])
|
247
|
+
|
248
|
+
## [0.12.0]
|
249
|
+
|
250
|
+
* Add matcher to check if a command can be found in PATH ([#336])
|
251
|
+
* Fixed issue with environment variables set by external libraries ([#321], [#320])
|
252
|
+
|
253
|
+
## [0.11.2]
|
254
|
+
|
255
|
+
* Fixed problem with positional arguments in `#run_simple()` ([#322])
|
256
|
+
|
257
|
+
## [0.11.1]
|
258
|
+
|
259
|
+
* Use fixed version of event-bus
|
260
|
+
* Refactored and improved documentation (feature tests) in [#309]
|
261
|
+
|
262
|
+
## [0.11.0]
|
263
|
+
|
264
|
+
* Accidently pushed to rubygems.org - yanked it afterwards
|
265
|
+
|
266
|
+
## [0.11.0.pre4]
|
267
|
+
|
268
|
+
* Fixed syntax for Hash on ruby 1.8.7
|
269
|
+
* Reorder rubies in .travis.yml
|
270
|
+
|
271
|
+
## [0.11.0.pre3]
|
272
|
+
|
273
|
+
* Fixed syntax for proc on ruby 1.8.7
|
274
|
+
|
275
|
+
## [0.11.0.pre2]
|
276
|
+
|
277
|
+
* Integrate `EventBus` to decouple announcers from starting, stopping commands
|
278
|
+
etc. This uses nearly the same implementation like `cucumber`. ([#309])
|
279
|
+
* Starting/Stopping a command directly (`command.start`, `command.stop`) is now
|
280
|
+
reported to the command monitor and `last_command_stopped` is updated
|
281
|
+
correctly
|
282
|
+
* Added `#restart` to `Command` to make it possible to restart a command
|
283
|
+
* Added check to prevent a command which has already been started, to be
|
284
|
+
started again. Otherwise you've got hidden commands which are not stopped
|
285
|
+
after a cucumber/rspec/minitest run.
|
286
|
+
* Adding alot of documentation to `aruba`
|
287
|
+
* Refactored `#run`: Now it wants you to pass a `Hash` containing the options.
|
288
|
+
The old syntax is still supported, but is deprecated.
|
289
|
+
* Added `#find_command` as experimental feature. It searches the started
|
290
|
+
commands from last to first.
|
291
|
+
* Added `be_an_executable` matcher
|
292
|
+
|
293
|
+
|
294
|
+
## [0.11.0.pre]
|
295
|
+
|
296
|
+
* Set stop signal which should be used to stop a process after a timeout or
|
297
|
+
used to terminate a process. This can be used to stop processes running
|
298
|
+
docker + "systemd". If you send a systemd-enable container SIGINT it will be
|
299
|
+
stopped.
|
300
|
+
* Added a configurable amount of time after a command was started -
|
301
|
+
startup_wait_time. Otherwise you get problems when a process takes to long to
|
302
|
+
startup when you run in background and want to sent it a signal.
|
303
|
+
* Replace `<variable>` in commandline, e.g. `<pid-last-command-started>`
|
304
|
+
[experimental]
|
305
|
+
* Added announce formatter for time spans, e.g. `startup_wait_time`
|
306
|
+
* All process classes, e.g. `BasicProcess`, `SpawnProcess`, etc., are marked as
|
307
|
+
private. Users should use `#run('cmd')` and not use the classes directly.
|
308
|
+
* `rvm`-methods are deprecated. They are too ruby specific.
|
309
|
+
|
310
|
+
|
311
|
+
## [0.10.2]
|
312
|
+
|
313
|
+
* Fixed problem in regex after merge of step definitions
|
314
|
+
|
315
|
+
|
316
|
+
## [0.10.1]
|
317
|
+
|
318
|
+
* Merged remove steps for file and directory from 4 into 2 step definitions
|
319
|
+
|
320
|
+
|
321
|
+
## [0.10.0]
|
322
|
+
|
323
|
+
* Fix '"#exit_timeout" is deprecated' error ([#314])
|
324
|
+
|
325
|
+
## [0.10.0.pre2]
|
326
|
+
|
327
|
+
* Take over code from `RSpec::Support::ObjectFormatter` since `rspec-support`
|
328
|
+
is not intended for public use.
|
329
|
+
|
330
|
+
## [0.10.0.pre]
|
331
|
+
|
332
|
+
* Add some new steps to make writing documentation easier using "cucumber",
|
333
|
+
"rspec", "minitest" together with "aruba" - see [Feature](features/getting_started/supported_testing_frameworks.feature)
|
334
|
+
for some examples
|
335
|
+
* Write output of commands directly to disk if SpawnProcess is used
|
336
|
+
(see [85d74fcc](https://github.com/cucumber/aruba/commit/85d74fcca4fff4e753776925d8b003cddaa8041d))
|
337
|
+
* Refactored API of cucumber steps to reduce the need for more methods and make
|
338
|
+
it easier for users to write their own steps ([#306])
|
339
|
+
* Added `aruba init` to the cli command to setup environment for aruba (issue
|
340
|
+
[#308])
|
341
|
+
* Added new method `delete_environment_variable` to remove environment variable
|
342
|
+
* Added work around because of method name conflict between Capybara and RSpec
|
343
|
+
([1939c404](https://github.com/cucumber/aruba/commit/1939c4049d5195ffdd967485f50119bdd86e98a0))
|
344
|
+
|
345
|
+
|
346
|
+
## [0.9.0]
|
347
|
+
|
348
|
+
* Fix feature test
|
349
|
+
* Fix ordering in console
|
350
|
+
* Fix bug in console handling SIGINT
|
351
|
+
* Deprecated Aruba/Reporting before we remove it
|
352
|
+
|
353
|
+
## [0.9.0.pre2]
|
354
|
+
|
355
|
+
* Redefine #to_s and #inspect for BasicProcess to reduce the sheer amount of
|
356
|
+
information, if a command produces a lot of output
|
357
|
+
* Added new matcher `#all_objects` to check if an object is included + an error
|
358
|
+
message for failures which is similar to the `#all`-matcher of `RSpec`
|
359
|
+
* Add `have_output`-, `have_output_on_stderr`, `have_output_on_stdout`-matchers
|
360
|
+
* Replace all `assert_*` and `check_*`-methods through expectations
|
361
|
+
* Add hook `@announce-output` to output both, stderr and stdout
|
362
|
+
* Add a lot of documentation ([#260])
|
363
|
+
* Replace `#last_command` through `#last_command_started` and
|
364
|
+
`#last_command_stopped` to make it more explicit
|
365
|
+
* Improve syntax highlighting in cucumber feature tests by adding programming
|
366
|
+
language to `"""`-blocks
|
367
|
+
* Rename tags `@ignore-*` to `@unsupported-on-*`
|
368
|
+
* Introduce our own `BaseMatcher`-class to remove the dependency to `RSpec`'s
|
369
|
+
private matcher APIs
|
370
|
+
* Now we make the process started via `SpawnProcess` the leader of the group to
|
371
|
+
kill all sub-processes more reliably
|
372
|
+
|
373
|
+
|
374
|
+
## [0.9.0.pre]
|
375
|
+
|
376
|
+
* Improve documentation for filesystem api and move it to feature tests
|
377
|
+
* Add logger to aruba. Its output can be captured by rspec.
|
378
|
+
* Fix incorrect deprecation message for check_file_presence ([#292])
|
379
|
+
* Fix for Gemfile excludes windows for many gems ([#282])
|
380
|
+
* Make feature tests compatible with ruby 1.9.2
|
381
|
+
* Gather disk usage for file(s) ([#294])
|
382
|
+
* Replace keep_ansi-config option by remove_ansi_escape_sequences-option
|
383
|
+
* Split up `#unescape` into `#extract_text` and `#unescape_text`
|
384
|
+
* Use `UnixPlatform` and `WindowsPlatform` to make code for different platforms
|
385
|
+
maintainable
|
386
|
+
* Work around `ENV`-bug in `Jruby` buy using `#dup` on `ENV.to_h` ([jruby/jruby#316])
|
387
|
+
* Speed up test on `JRuby` by using `--dev`-flag
|
388
|
+
* Work around problems when copying files with `cp` on MRI-ruby 1.9.2
|
389
|
+
* Add cmd.exe /c for SpawnProcess on Windows ([#302])
|
390
|
+
* Split up `#which` for Windows and Unix/Linux ([#304])
|
391
|
+
* Add `aruba console`-command to play around with aruba ([#305])
|
392
|
+
|
393
|
+
|
394
|
+
## [0.8.1]
|
395
|
+
|
396
|
+
* Fix problem if working directory of aruba does not exist ([#286])
|
397
|
+
* Re-Add removed method only_processes
|
398
|
+
* Fixed problem with last exit status
|
399
|
+
* Added appveyor to run tests of aruba on Windows ([#287])
|
400
|
+
* Make the home directory configurable and use Around/around-hook to apply it
|
401
|
+
* Add announcer to output the full environment before a command is run
|
402
|
+
* Use prepend_environment_variable to modify PATH for rspec integration
|
403
|
+
* Add VERSION-constant to aruba and use it for code which should be activated on >= 1.0.0
|
404
|
+
|
405
|
+
## [0.8.0]
|
406
|
+
|
407
|
+
* Build with cucumber 1.3.x on ruby 1.8.7, with cucumber 2.x on all other platforms
|
408
|
+
* Fixed bugs in aruba's cucumber steps
|
409
|
+
* Disable use of `win32/file`
|
410
|
+
* Fixed bug in `in_current_dir*` not returning the result of the block
|
411
|
+
* Fixed checks for file content
|
412
|
+
* Fixed selectors for DebugProcess and InProcess to support sub-classes as well
|
413
|
+
|
414
|
+
|
415
|
+
## [0.8.0.pre3]
|
416
|
+
|
417
|
+
* Depend on cucumber 1.3.x for compatibility on ruby 1.8.7
|
418
|
+
* Change PWD and OLDPW when `cd('path') {}` is used within that block
|
419
|
+
* Make nesting of `cd` possible
|
420
|
+
* Make `run` inside `cd` possible
|
421
|
+
* Fixed some bugs
|
422
|
+
* Move `Aruba.proces = InProcess|SpawnProcess|DebugProcess` to `aruba.config`
|
423
|
+
* Deprecate direct use of `InProcess|SpawnProcess|DebugProcess`. Now `Command`
|
424
|
+
needs to be used
|
425
|
+
* Add new configuration options `command_launcher` and `main_klass` for
|
426
|
+
deprecation of old-style `Aruba.process = <class>`, `:spawn` is the default
|
427
|
+
value for the `command_launcher`-option
|
428
|
+
* Added checks for version of `rspec-expectations` to support older `rspec`
|
429
|
+
versions like `2.11`
|
430
|
+
* Now each `path/to/dir` pushed to `aruba.current_directory` is `pop`ed as whole
|
431
|
+
* Make testing of `aruba.current_directory` easier by supporting `end_with?` and `start_with?`
|
432
|
+
|
433
|
+
## [0.8.0.pre2]
|
434
|
+
|
435
|
+
* Relax requirement on rspec-expectations (3.3 -> 2.11)
|
436
|
+
|
437
|
+
## [0.8.0.pre]
|
438
|
+
|
439
|
+
* Make aruba compatible with "ruby 1.8.7" and "ruby 1.9.3" again ([#279])
|
440
|
+
* Move more and more documentation to cucumber steps ([#268])
|
441
|
+
* Refactoring of test suits, now rspec tests run randomly
|
442
|
+
* Move Aruba constants to configuration class ([#271])
|
443
|
+
* Added runtime configuration via `aruba.config` which is reset for each test run
|
444
|
+
* Refactored hooks: now there are `after()` and `before()`-hooks, old
|
445
|
+
before_cmd-hook is still working, but is deprecated, added new
|
446
|
+
`after(:command)`-hook.
|
447
|
+
* Refactored jruby-startup helper
|
448
|
+
* Cleanup API by moving deprecated methods to separate class
|
449
|
+
* Cleanup Core API - reduced to `cd`, `expand_path`, `setup_aruba` and use expand_path wherever possible ([#253])
|
450
|
+
* Better isolation for environment variable manipulation - really helpful from 1.0.0 on
|
451
|
+
* Move configuration files like `jruby.rb` to `aruba/config/`-directory
|
452
|
+
* Change default exit timeout to 15 seconds to work around long running processes on travis
|
453
|
+
* Use of instance variables like @aruba_timeout_seconds or
|
454
|
+
@aruba_io_wait_seconds are deprecated. Use `Aruba.configure do |config|
|
455
|
+
config.exit_timeout = 10` etc. for this.
|
456
|
+
|
457
|
+
## [0.7.4]
|
458
|
+
* Really Fixed post install message
|
459
|
+
|
460
|
+
## [0.7.3]
|
461
|
+
* Fixed post install message
|
462
|
+
|
463
|
+
## [0.7.2]
|
464
|
+
|
465
|
+
* Do not trigger Announcer API deprecation warning ([#277])
|
466
|
+
|
467
|
+
## [0.7.1]
|
468
|
+
|
469
|
+
* Do not break if @interactive is used
|
470
|
+
|
471
|
+
## [0.7.0]
|
472
|
+
|
473
|
+
* Introducing root_directory ([#232])
|
474
|
+
* Introducing fixtures directory ([#224])
|
475
|
+
* Make sure a file/directory does not exist + Cleanup named file/directory steps ([#234])
|
476
|
+
* Make matcher have_permisions public and add documentation ([#239])
|
477
|
+
* Added matcher for file content ([#238])
|
478
|
+
* Add rspec integrator ([#244])
|
479
|
+
* Deprecate `_file` and `_directory` in method names ([#243])
|
480
|
+
* Improve development environment ([#240])
|
481
|
+
* Cleanup process management ([#257])
|
482
|
+
* Make path content available through matchers and api metchods ([#250])
|
483
|
+
* Refactor announcer to support user defined announce channels (fixes [#267])
|
484
|
+
* `InProcess` requires that the working directory is determined on runtime not no loadtime
|
485
|
+
|
486
|
+
## [0.6.2]
|
487
|
+
|
488
|
+
* Fixed minor [#223])
|
489
|
+
* Added support for ruby 2.1.3 -- 2.1.5
|
490
|
+
* Added support for comparison to a fixture file
|
491
|
+
|
492
|
+
## [0.6.1]
|
493
|
+
|
494
|
+
* Added support for ruby 2.1.2
|
495
|
+
* Added support for ~ expansion
|
496
|
+
* Added support for with_env
|
497
|
+
|
498
|
+
## [0.6.0]
|
499
|
+
|
500
|
+
* Dropped support for ruby 1.8
|
501
|
+
* Added support for ruby 2.1.0 and 2.1.1
|
502
|
+
* Added rspec 3.0.0 support
|
503
|
+
|
504
|
+
## [0.5.4]
|
505
|
+
|
506
|
+
* Added support for piping in files ([#154], [maxmeyer], dg-vrnetze)
|
507
|
+
* Added cucumber steps for environment variables ([#156], dg-vrnetze)
|
508
|
+
* Added support for file mode ([#157], [maxmeyer], dg-vrnetze)
|
509
|
+
|
510
|
+
## [0.5.3]
|
511
|
+
|
512
|
+
* Fix for UTF-8 support ([#151], [mattwynne], [jarl-dk])
|
513
|
+
* Fix for open file leakage ([#150], [JonRowe])
|
514
|
+
|
515
|
+
## [0.5.2]
|
516
|
+
|
517
|
+
* Plugin API for greater speed. Test Ruby CLI programs in a single Ruby process ([#148], [aslakhellesoy])
|
518
|
+
* Fix memory leak when several commands are executed in a single run ([#144], [y-higuchi])
|
519
|
+
|
520
|
+
## [0.5.1]
|
521
|
+
|
522
|
+
* Individual timeout settings when running commands ([#124], [jarl-dk])
|
523
|
+
* Varous fixes for JRuby tests, should now work on more versions of JRuby
|
524
|
+
|
525
|
+
## [0.5.0]
|
526
|
+
|
527
|
+
* Add #with_file_content to the DSL ([#110], [argent-smith])
|
528
|
+
* Make JRuby performance tweaks optional ([#102], [taylor], [#125], [alindeman])
|
529
|
+
* Add assert_partial_output_interactive so you can peek at the output from a running process ([#104], [taylor])
|
530
|
+
* Add assert_not_matching_output ([#111], [argent-smith])
|
531
|
+
* Add remove_dir ([#121], [LTe])
|
532
|
+
|
533
|
+
## [0.4.11]
|
534
|
+
|
535
|
+
* Fix duplicated output ([#91], [robertwahler], [mattwynne])
|
536
|
+
* Fix Gemspec format ([#101], [mattwynne])
|
537
|
+
|
538
|
+
## [0.4.10]
|
539
|
+
|
540
|
+
* Fix broken JRuby file following rename of hook ([tdreyno])
|
541
|
+
* Add terminate method to API ([taylor])
|
542
|
+
|
543
|
+
## [0.4.9]
|
544
|
+
|
545
|
+
* Rename before_run hook to before_cmd ([mattwynne])
|
546
|
+
* Fix 1.8.7 compatibility ([#95], [davetron5000])
|
547
|
+
|
548
|
+
## [0.4.8]
|
549
|
+
|
550
|
+
* Add before_run hook ([mattwynne])
|
551
|
+
* Add JRuby performance tweaks ([#93], [myronmarston], [mattwynne])
|
552
|
+
* Invalid/Corrupt spec file for 0.4.7 - undefined method call for nil:Nilclass ([#47], [aslakhellesoy])
|
553
|
+
|
554
|
+
## [0.4.7]
|
555
|
+
|
556
|
+
* Remove rdiscount dependency. ([#85], [aslakhellesoy])
|
557
|
+
* Pin to ffi 1.0.9 since 1.0.10 is broken. ([aslakhellesoy])
|
558
|
+
* Added file size specific steps to the Aruba API. ([#89], [hectcastro])
|
559
|
+
|
560
|
+
## [0.4.6]
|
561
|
+
|
562
|
+
* Upgraded deps to latest gems. ([aslakhellesoy])
|
563
|
+
* Added Regexp support to Aruba::Api#assert_no_partial_output ([aslakhellesoy])
|
564
|
+
|
565
|
+
## [0.4.5]
|
566
|
+
|
567
|
+
* Better assertion failure message when an exit code is not as expected.
|
568
|
+
([mattwynne])
|
569
|
+
|
570
|
+
## [0.4.4]
|
571
|
+
|
572
|
+
* Fix various bugs with interative processes. ([mattwynne])
|
573
|
+
|
574
|
+
## [0.4.3]
|
575
|
+
|
576
|
+
* Aruba reporting now creates an index file for reports, linking them all
|
577
|
+
together. ([aslakhellesoy])
|
578
|
+
|
579
|
+
## [0.4.2]
|
580
|
+
|
581
|
+
* Appending to a file creates the parent directory if it doesn't exist.
|
582
|
+
([aslakhellesoy])
|
583
|
+
|
584
|
+
## [0.4.1]
|
585
|
+
|
586
|
+
* Move more logic into Aruba::Api ([aslakhellesoy])
|
587
|
+
|
588
|
+
## [0.4.0]
|
589
|
+
|
590
|
+
* New, awesome HTML reporting feature that captures everything that happens
|
591
|
+
during a scenario. ([aslakhellesoy])
|
592
|
+
* ANSI escapes from output are stripped by default. Override this with the @ansi
|
593
|
+
tag. ([aslakhellesoy])
|
594
|
+
|
595
|
+
## [0.3.7]
|
596
|
+
|
597
|
+
* Make Aruba::Api#get_process return the last executed process with passed cmd
|
598
|
+
([greyblake])
|
599
|
+
* Replace announce with puts to comply with cucumber 0.10.6 ([aslakhellesoy])
|
600
|
+
* Fix childprocess STDIN to be synchronous ([#40], [#71], [lithium3141])
|
601
|
+
|
602
|
+
## [0.3.6]
|
603
|
+
|
604
|
+
* Changed default value of @aruba_timeout_seconds from 1 to 3. ([aslakhellesoy])
|
605
|
+
* Separate hooks and steps to make it easier to build your own steps on top of
|
606
|
+
Aruba's API ([msassak])
|
607
|
+
* @no-clobber to prevent cleanup before each scenario ([msassak])
|
608
|
+
|
609
|
+
## [0.3.5]
|
610
|
+
|
611
|
+
* Store processes in an array to ensure order of operations on Ruby 1.8.x
|
612
|
+
([#48] [msassak])
|
613
|
+
|
614
|
+
## [0.3.4]
|
615
|
+
|
616
|
+
* Use backticks (\`) instead of quotes (") to specify command line. Quote still
|
617
|
+
works, but is deprecated. ([aeden], [aslakhellesoy])
|
618
|
+
|
619
|
+
## [0.3.3]
|
620
|
+
|
621
|
+
* Updated RSpec development requirement to 2.5 ([rspeicher], [msassak],
|
622
|
+
[aslakhellesoy])
|
623
|
+
* Updated RubyGems dependency to 1.6.1 ([rspeicher])
|
624
|
+
|
625
|
+
## [0.3.2]
|
626
|
+
|
627
|
+
* Wrong number of args in the When I overwrite step ([aslakhellesoy])
|
628
|
+
|
629
|
+
## [0.3.1]
|
630
|
+
|
631
|
+
* Broken 0.3.0 release ([#43], [#44], [msassak])
|
632
|
+
* Quotes (") and newline (\n) in step arguments are no longer unescaped. ([aslakhellesoy])
|
633
|
+
|
634
|
+
## [0.3.0]
|
635
|
+
|
636
|
+
* Remove latency introduced in the 0.2.8 release ([#42], [msassak])
|
637
|
+
* New stepdef Then /^the stdout should contain:$/ do |partial_output| ([aslakhellesoy])
|
638
|
+
* Quotes (") and newline (\n) in step arguments no longer need to be backslash-escaped. ([aslakhellesoy])
|
639
|
+
|
640
|
+
## [0.2.8]
|
641
|
+
|
642
|
+
* Replaced background_process with childprocess, a cross-platform process control
|
643
|
+
library. This will allow Aruba to run on Windows and JRuby in addition to \*nix
|
644
|
+
MRI. ([#16], [#27], [#31], [msassak], [jarib], [mattwynne], [aknuds1])
|
645
|
+
|
646
|
+
## [0.2.7]
|
647
|
+
|
648
|
+
* Upgrade to Cucumber 0.10.0. ([aslakhellesoy])
|
649
|
+
* require 'aruba' does nothing - you have to require 'aruba/cucumber' now. This
|
650
|
+
is to prevent bundler from loading it when we don't want to. ([aslakhellesoy])
|
651
|
+
* Outputting a lot of data causes process to time out ([#30], [msassak])
|
652
|
+
|
653
|
+
## [0.2.6]
|
654
|
+
|
655
|
+
* You can set `@aruba_timeout_seconds` in a Before hook to tell Aruba to wait
|
656
|
+
for a process to complete. Default: 1 second. ([aslakhellesoy])
|
657
|
+
* Fixed small bug in `/^the stdout should contain exactly:$/` ([aslakhellesoy])
|
658
|
+
|
659
|
+
## [0.2.5]
|
660
|
+
|
661
|
+
* Added 'a file named "whatever" should (not) exist' ([rspeicher])
|
662
|
+
* Added 'a directory named "whatever" should (not) exist' ([rspeicher])
|
663
|
+
* Added /^the stderr should contain exactly:"$/ ([aslakhellesoy])
|
664
|
+
* Added /^the stdout should contain exactly:"$/ ([aslakhellesoy])
|
665
|
+
* Added /it should pass with exactly:/ ([aslakhellesoy])
|
666
|
+
* @announce, @announce-dir and @announce-cmd for interactive processes ([msassak])
|
667
|
+
* Add step defs for detecting output, stdout and stderr by process name ([msassak])
|
668
|
+
* Stop all processes before verifying filesystem changes to ensure async operations
|
669
|
+
are complete ([#17], [msassak])
|
670
|
+
* Outputting large amounts of data causes run steps to hang ([#18], [msassak])
|
671
|
+
|
672
|
+
## [0.2.4]
|
673
|
+
|
674
|
+
* Added step definitions for removing files and checking presence of a single
|
675
|
+
file. ([aslakhellesoy])
|
676
|
+
|
677
|
+
## [0.2.3]
|
678
|
+
|
679
|
+
* Directory should not exist gives false-positive ([#13], [#15], [nruth])
|
680
|
+
* Added step definitions for comparing file contents with regexps ([#9],
|
681
|
+
[aslakhellesoy])
|
682
|
+
* Always put ./bin at the beginning of $PATH to make it easier to run own
|
683
|
+
executables ([#7], [aslakhellesoy])
|
684
|
+
* Communication with interactive processes ([#4], [msassak])
|
685
|
+
* Remove hyphens separating stdout and stderr ([aknuds1])
|
686
|
+
|
687
|
+
## [0.2.2]
|
688
|
+
|
689
|
+
* Added a @bin tag that sets up './bin' first on the path ([aslakhellesoy])
|
690
|
+
* Richer API making aruba easier to use from Ruby code. (Mark Nijhof, [aslakhellesoy])
|
691
|
+
* No more support for RVM. Use rvm 1.9.2,1.8.7 exec cucumber .... instead. (Mark Nijhof, [aslakhellesoy])
|
692
|
+
|
693
|
+
## [0.2.1]
|
694
|
+
|
695
|
+
* Always compare with RSpec should =~ instead of should match. This gives a diff when there is no match. ([aslakhellesoy])
|
696
|
+
|
697
|
+
## [0.2.0]
|
698
|
+
|
699
|
+
* Added aruba.gemspec. ([dchelimsky])
|
700
|
+
* Several step definitions regarding output have changed. ([#1], [aslakhellesoy])
|
701
|
+
|
702
|
+
- /^I should see "([^\"]*)"$/
|
703
|
+
+ /^the output should contain "([^"]*)"$/
|
704
|
+
|
705
|
+
- /^I should not see "([^\"]*)"$/
|
706
|
+
+ /^the output should not contain "([^"]*)"$/
|
707
|
+
|
708
|
+
- /^I should see:$/
|
709
|
+
+ /^the output should contain:$/
|
710
|
+
|
711
|
+
- /^I should not see:$/
|
712
|
+
+ /^the output should not contain:$/
|
713
|
+
|
714
|
+
- /^I should see exactly "([^\"]*)"$/
|
715
|
+
+ /^the output should contain exactly "([^"]*)"$/
|
716
|
+
|
717
|
+
- /^I should see exactly:$/
|
718
|
+
+ /^the output should contain exactly:$/
|
719
|
+
|
720
|
+
- /^I should see matching \/([^\/]*)\/$/
|
721
|
+
+ /^the output should match \/([^\/]*)\/$/
|
722
|
+
|
723
|
+
- /^I should see matching:$/
|
724
|
+
+ /^the output should match:$/
|
725
|
+
|
726
|
+
## [0.1.9]
|
727
|
+
|
728
|
+
* If the GOTGEMS environment variable is set, bundler won't run (faster). ([aslakhellesoy])
|
729
|
+
|
730
|
+
## [0.1.8]
|
731
|
+
|
732
|
+
* Use // instead of "" for "I should see matching" step. ([aslakhellesoy])
|
733
|
+
* Replace rvm gemset character '%' with '@' for rvm 0.1.24 ([#5], Ashley Moran)
|
734
|
+
* Support gem bundler, making it easier to specify gems. ([aslakhellesoy])
|
735
|
+
|
736
|
+
## [0.1.7]
|
737
|
+
|
738
|
+
* New @announce-stderr tag ([robertwahler])
|
739
|
+
* New "I should see matching" steps using Regexp ([robertwahler])
|
740
|
+
|
741
|
+
## [0.1.6]
|
742
|
+
|
743
|
+
* `When /^I successfully run "(.*)"$/` now prints the combined output if exit
|
744
|
+
status is not 0. ([aslakhellesoy])
|
745
|
+
* Add bundle to list of common ruby scripts. ([aslakhellesoy])
|
746
|
+
|
747
|
+
## [0.1.5]
|
748
|
+
|
749
|
+
* Added ability to map rvm versions to a specific version with config/aruba-rvm.yml. ([aslakhellesoy])
|
750
|
+
* Check for presence of files. ([aslakhellesoy])
|
751
|
+
* Allow specification of rvm gemsets. ([aslakhellesoy])
|
752
|
+
* Detect ruby commands and use current ruby when rvm is not explicitly used. ([aslakhellesoy])
|
753
|
+
* Added support for rvm, making it possible to choose Ruby interpreter. ([aslakhellesoy])
|
754
|
+
* Added @announce-cmd, @announce-stdout and @announce tags, useful for seeing what's executed and outputted. ([aslakhellesoy])
|
755
|
+
|
756
|
+
## [0.1.4]
|
757
|
+
|
758
|
+
* New step definition for appending to a file ([aslakhellesoy])
|
759
|
+
|
760
|
+
## [0.1.3]
|
761
|
+
|
762
|
+
* New step definition for cd (change directory) ([aslakhellesoy])
|
763
|
+
|
764
|
+
## [0.1.2]
|
765
|
+
|
766
|
+
* Separated API from Cucumber step definitions, makes this usable without Cucumber. ([aslakhellesoy])
|
767
|
+
|
768
|
+
## [0.1.1]
|
769
|
+
|
770
|
+
* Better Regexp escaping ([dchelimsky])
|
771
|
+
|
772
|
+
## [0.1.0]
|
773
|
+
|
774
|
+
* First release ([dchelimsky] and [aslakhellesoy])
|
775
|
+
|
776
|
+
<!-- Contributors -->
|
777
|
+
|
778
|
+
[AdrieanKhisbe]: https://github.com/AdrieanKhisbe
|
779
|
+
[aeden]: https://github.com/aeden
|
780
|
+
[aknuds1]: https://github.com/aknuds1
|
781
|
+
[alindeman]: https://github.com/alindeman
|
782
|
+
[amatsuda]: https://github.com/amatsuda
|
783
|
+
[argent-smith]: https://github.com/argent-smith
|
784
|
+
[aslakhellesoy]: https://github.com/aslakhellesoy
|
785
|
+
[cllns]: https://github.com/cllns
|
786
|
+
[davetron5000]: https://github.com/davetron5000
|
787
|
+
[dchelimsky]: https://github.com/dchelimsky
|
788
|
+
[doudou]: https://github.com/doudou
|
789
|
+
[e2]: https://github.com/e2
|
790
|
+
[greyblake]: https://github.com/greyblake
|
791
|
+
[grosser]: https://github.com/grosser
|
792
|
+
[hectcastro]: https://github.com/hectcastro
|
793
|
+
[Heinrich]: https://github.com/Heinrich
|
794
|
+
[jarib]: https://github.com/jarib
|
795
|
+
[jarl-dk]: https://github.com/jarl-dk
|
796
|
+
[jaysonesmith]: https://github.com/jaysonesmith
|
797
|
+
[JonRowe]: https://github.com/JonRowe
|
798
|
+
[junaruga]: https://github.com/junaruga
|
799
|
+
[lithium3141]: https://github.com/lithium3141
|
800
|
+
[LTe]: https://github.com/LTe
|
801
|
+
[luke-hill]: https://github.com/luke-hill
|
802
|
+
[mattwynne]: https://github.com/mattwynne
|
803
|
+
[maxmeyer]: https://github.com/maxmeyer
|
804
|
+
[msassak]: https://github.com/msassak
|
805
|
+
[mvz]: https://github.com/mvz
|
806
|
+
[myronmarston]: https://github.com/myronmarston
|
807
|
+
[nicolasleger]: https://github.com/nicolasleger
|
808
|
+
[njam]: https://github.com/njam
|
809
|
+
[nruth]: https://github.com/nruth
|
810
|
+
[olleolleolle]: https://github.com/olleolleolle
|
811
|
+
[richardxia]: https://github.com/richardxia
|
812
|
+
[robertwahler]: https://github.com/robertwahler
|
813
|
+
[roschaefer]: https://github.com/roschaefer
|
814
|
+
[rspeicher]: https://github.com/rspeicher
|
815
|
+
[rubbish]: https://github.com/rubbish
|
816
|
+
[scottj97]: https://github.com/scottj97
|
817
|
+
[stamhankar999]: https://github.com/stamhankar999
|
818
|
+
[taylor]: https://github.com/taylor
|
819
|
+
[tdreyno]: https://github.com/tdreyno
|
820
|
+
[xtrasimplicity]: https://github.com/xtrasimplicity
|
821
|
+
[y-higuchi]: https://github.com/y-higuchi
|
822
|
+
|
823
|
+
<!-- issues & pull requests -->
|
824
|
+
|
825
|
+
[#623]: https://github.com/cucumber/aruba/pull/623
|
826
|
+
[#618]: https://github.com/cucumber/aruba/pull/618
|
827
|
+
[#615]: https://github.com/cucumber/aruba/pull/615
|
828
|
+
[#613]: https://github.com/cucumber/aruba/pull/613
|
829
|
+
[#607]: https://github.com/cucumber/aruba/pull/607
|
830
|
+
[#606]: https://github.com/cucumber/aruba/pull/606
|
831
|
+
[#604]: https://github.com/cucumber/aruba/pull/604
|
832
|
+
[#601]: https://github.com/cucumber/aruba/pull/601
|
833
|
+
[#597]: https://github.com/cucumber/aruba/pull/597
|
834
|
+
[#596]: https://github.com/cucumber/aruba/pull/596
|
835
|
+
[#594]: https://github.com/cucumber/aruba/pull/594
|
836
|
+
[#593]: https://github.com/cucumber/aruba/pull/593
|
837
|
+
[#591]: https://github.com/cucumber/aruba/pull/591
|
838
|
+
[#588]: https://github.com/cucumber/aruba/pull/588
|
839
|
+
[#587]: https://github.com/cucumber/aruba/pull/587
|
840
|
+
[#585]: https://github.com/cucumber/aruba/pull/585
|
841
|
+
[#584]: https://github.com/cucumber/aruba/pull/584
|
842
|
+
[#583]: https://github.com/cucumber/aruba/pull/583
|
843
|
+
[#582]: https://github.com/cucumber/aruba/pull/582
|
844
|
+
[#581]: https://github.com/cucumber/aruba/pull/581
|
845
|
+
[#580]: https://github.com/cucumber/aruba/pull/580
|
846
|
+
[#578]: https://github.com/cucumber/aruba/pull/578
|
847
|
+
[#575]: https://github.com/cucumber/aruba/pull/575
|
848
|
+
[#572]: https://github.com/cucumber/aruba/pull/572
|
849
|
+
[#562]: https://github.com/cucumber/aruba/pull/562
|
850
|
+
[#561]: https://github.com/cucumber/aruba/pull/561
|
851
|
+
[#560]: https://github.com/cucumber/aruba/pull/560
|
852
|
+
[#557]: https://github.com/cucumber/aruba/pull/557
|
853
|
+
[#555]: https://github.com/cucumber/aruba/pull/555
|
854
|
+
[#554]: https://github.com/cucumber/aruba/pull/554
|
855
|
+
[#553]: https://github.com/cucumber/aruba/pull/553
|
856
|
+
[#551]: https://github.com/cucumber/aruba/pull/551
|
857
|
+
[#548]: https://github.com/cucumber/aruba/pull/548
|
858
|
+
[#546]: https://github.com/cucumber/aruba/pull/546
|
859
|
+
[#544]: https://github.com/cucumber/aruba/pull/544
|
860
|
+
[#543]: https://github.com/cucumber/aruba/pull/543
|
861
|
+
[#542]: https://github.com/cucumber/aruba/pull/542
|
862
|
+
[#541]: https://github.com/cucumber/aruba/pull/541
|
863
|
+
[#540]: https://github.com/cucumber/aruba/pull/540
|
864
|
+
[#537]: https://github.com/cucumber/aruba/pull/537
|
865
|
+
[#536]: https://github.com/cucumber/aruba/pull/536
|
866
|
+
[#535]: https://github.com/cucumber/aruba/pull/535
|
867
|
+
[#532]: https://github.com/cucumber/aruba/pull/532
|
868
|
+
[#530]: https://github.com/cucumber/aruba/pull/530
|
869
|
+
[#529]: https://github.com/cucumber/aruba/pull/529
|
870
|
+
[#528]: https://github.com/cucumber/aruba/pull/528
|
871
|
+
[#523]: https://github.com/cucumber/aruba/pull/523
|
872
|
+
[#522]: https://github.com/cucumber/aruba/pull/522
|
873
|
+
[#520]: https://github.com/cucumber/aruba/pull/520
|
874
|
+
[#517]: https://github.com/cucumber/aruba/pull/517
|
875
|
+
[#516]: https://github.com/cucumber/aruba/pull/516
|
876
|
+
[#515]: https://github.com/cucumber/aruba/pull/515
|
877
|
+
[#514]: https://github.com/cucumber/aruba/pull/514
|
878
|
+
[#512]: https://github.com/cucumber/aruba/pull/512
|
879
|
+
[#511]: https://github.com/cucumber/aruba/pull/511
|
880
|
+
[#510]: https://github.com/cucumber/aruba/pull/510
|
881
|
+
[#509]: https://github.com/cucumber/aruba/pull/509
|
882
|
+
[#508]: https://github.com/cucumber/aruba/pull/508
|
883
|
+
[#507]: https://github.com/cucumber/aruba/pull/507
|
884
|
+
[#504]: https://github.com/cucumber/aruba/pull/504
|
885
|
+
[#498]: https://github.com/cucumber/aruba/pull/498
|
886
|
+
[#497]: https://github.com/cucumber/aruba/pull/497
|
887
|
+
[#495]: https://github.com/cucumber/aruba/pull/495
|
888
|
+
[#494]: https://github.com/cucumber/aruba/pull/494
|
889
|
+
[#493]: https://github.com/cucumber/aruba/pull/493
|
890
|
+
[#491]: https://github.com/cucumber/aruba/pull/491
|
891
|
+
[#490]: https://github.com/cucumber/aruba/pull/490
|
892
|
+
[#489]: https://github.com/cucumber/aruba/pull/489
|
893
|
+
[#488]: https://github.com/cucumber/aruba/pull/488
|
894
|
+
[#487]: https://github.com/cucumber/aruba/pull/487
|
895
|
+
[#486]: https://github.com/cucumber/aruba/pull/486
|
896
|
+
[#483]: https://github.com/cucumber/aruba/pull/483
|
897
|
+
[#482]: https://github.com/cucumber/aruba/pull/482
|
898
|
+
[#481]: https://github.com/cucumber/aruba/pull/481
|
899
|
+
[#476]: https://github.com/cucumber/aruba/pull/476
|
900
|
+
[#475]: https://github.com/cucumber/aruba/pull/475
|
901
|
+
[#471]: https://github.com/cucumber/aruba/pull/471
|
902
|
+
[#466]: https://github.com/cucumber/aruba/pull/466
|
903
|
+
[#464]: https://github.com/cucumber/aruba/pull/464
|
904
|
+
[#462]: https://github.com/cucumber/aruba/pull/462
|
905
|
+
[#461]: https://github.com/cucumber/aruba/pull/461
|
906
|
+
[#460]: https://github.com/cucumber/aruba/pull/460
|
907
|
+
[#459]: https://github.com/cucumber/aruba/pull/459
|
908
|
+
[#457]: https://github.com/cucumber/aruba/pull/457
|
909
|
+
[#456]: https://github.com/cucumber/aruba/pull/456
|
910
|
+
[#454]: https://github.com/cucumber/aruba/pull/454
|
911
|
+
[#452]: https://github.com/cucumber/aruba/pull/452
|
912
|
+
[#451]: https://github.com/cucumber/aruba/issues/451
|
913
|
+
[#449]: https://github.com/cucumber/aruba/issues/449
|
914
|
+
[#447]: https://github.com/cucumber/aruba/issues/447
|
915
|
+
[#445]: https://github.com/cucumber/aruba/issues/445
|
916
|
+
[#444]: https://github.com/cucumber/aruba/issues/444
|
917
|
+
[#442]: https://github.com/cucumber/aruba/issues/442
|
918
|
+
[#439]: https://github.com/cucumber/aruba/issues/439
|
919
|
+
[#438]: https://github.com/cucumber/aruba/issues/438
|
920
|
+
[#436]: https://github.com/cucumber/aruba/issues/436
|
921
|
+
[#433]: https://github.com/cucumber/aruba/issues/433
|
922
|
+
[#427]: https://github.com/cucumber/aruba/issues/427
|
923
|
+
[#422]: https://github.com/cucumber/aruba/issues/422
|
924
|
+
[#398]: https://github.com/cucumber/aruba/issues/398
|
925
|
+
[#390]: https://github.com/cucumber/aruba/issues/390
|
926
|
+
[#389]: https://github.com/cucumber/aruba/issues/389
|
927
|
+
[#388]: https://github.com/cucumber/aruba/issues/388
|
928
|
+
[#387]: https://github.com/cucumber/aruba/issues/387
|
929
|
+
[#385]: https://github.com/cucumber/aruba/issues/385
|
930
|
+
[#382]: https://github.com/cucumber/aruba/issues/382
|
931
|
+
[#376]: https://github.com/cucumber/aruba/issues/376
|
932
|
+
[#375]: https://github.com/cucumber/aruba/issues/375
|
933
|
+
[#372]: https://github.com/cucumber/aruba/issues/372
|
934
|
+
[#366]: https://github.com/cucumber/aruba/issues/366
|
935
|
+
[#359]: https://github.com/cucumber/aruba/issues/359
|
936
|
+
[#358]: https://github.com/cucumber/aruba/issues/358
|
937
|
+
[#357]: https://github.com/cucumber/aruba/issues/357
|
938
|
+
[#353]: https://github.com/cucumber/aruba/issues/353
|
939
|
+
[#352]: https://github.com/cucumber/aruba/issues/352
|
940
|
+
[#349]: https://github.com/cucumber/aruba/issues/349
|
941
|
+
[#347]: https://github.com/cucumber/aruba/issues/347
|
942
|
+
[#342]: https://github.com/cucumber/aruba/issues/342
|
943
|
+
[#341]: https://github.com/cucumber/aruba/issues/341
|
944
|
+
[#339]: https://github.com/cucumber/aruba/issues/339
|
945
|
+
[#338]: https://github.com/cucumber/aruba/issues/338
|
946
|
+
[#336]: https://github.com/cucumber/aruba/issues/336
|
947
|
+
[#335]: https://github.com/cucumber/aruba/issues/335
|
948
|
+
[#323]: https://github.com/cucumber/aruba/issues/323
|
949
|
+
[#322]: https://github.com/cucumber/aruba/issues/322
|
950
|
+
[#321]: https://github.com/cucumber/aruba/issues/321
|
951
|
+
[#320]: https://github.com/cucumber/aruba/issues/320
|
952
|
+
[#314]: https://github.com/cucumber/aruba/issues/314
|
953
|
+
[#309]: https://github.com/cucumber/aruba/issues/309
|
954
|
+
[#308]: https://github.com/cucumber/aruba/issues/308
|
955
|
+
[#306]: https://github.com/cucumber/aruba/issues/306
|
956
|
+
[#305]: https://github.com/cucumber/aruba/issues/305
|
957
|
+
[#304]: https://github.com/cucumber/aruba/issues/304
|
958
|
+
[#302]: https://github.com/cucumber/aruba/issues/302
|
959
|
+
[#294]: https://github.com/cucumber/aruba/issues/294
|
960
|
+
[#292]: https://github.com/cucumber/aruba/issues/292
|
961
|
+
[#287]: https://github.com/cucumber/aruba/issues/287
|
962
|
+
[#286]: https://github.com/cucumber/aruba/issues/286
|
963
|
+
[#282]: https://github.com/cucumber/aruba/issues/282
|
964
|
+
[#279]: https://github.com/cucumber/aruba/issues/279
|
965
|
+
[#277]: https://github.com/cucumber/aruba/issues/277
|
966
|
+
[#271]: https://github.com/cucumber/aruba/issues/271
|
967
|
+
[#268]: https://github.com/cucumber/aruba/issues/268
|
968
|
+
[#267]: https://github.com/cucumber/aruba/issues/267
|
969
|
+
[#260]: https://github.com/cucumber/aruba/issues/260
|
970
|
+
[#257]: https://github.com/cucumber/aruba/issues/257
|
971
|
+
[#253]: https://github.com/cucumber/aruba/issues/253
|
972
|
+
[#250]: https://github.com/cucumber/aruba/issues/250
|
973
|
+
[#244]: https://github.com/cucumber/aruba/issues/244
|
974
|
+
[#243]: https://github.com/cucumber/aruba/issues/243
|
975
|
+
[#240]: https://github.com/cucumber/aruba/issues/240
|
976
|
+
[#239]: https://github.com/cucumber/aruba/issues/239
|
977
|
+
[#238]: https://github.com/cucumber/aruba/issues/238
|
978
|
+
[#234]: https://github.com/cucumber/aruba/issues/234
|
979
|
+
[#232]: https://github.com/cucumber/aruba/issues/232
|
980
|
+
[#224]: https://github.com/cucumber/aruba/issues/224
|
981
|
+
[#223]: https://github.com/cucumber/aruba/issues/223
|
982
|
+
[#157]: https://github.com/cucumber/aruba/issues/157
|
983
|
+
[#156]: https://github.com/cucumber/aruba/issues/156
|
984
|
+
[#154]: https://github.com/cucumber/aruba/issues/154
|
985
|
+
[#151]: https://github.com/cucumber/aruba/issues/151
|
986
|
+
[#150]: https://github.com/cucumber/aruba/issues/150
|
987
|
+
[#148]: https://github.com/cucumber/aruba/issues/148
|
988
|
+
[#144]: https://github.com/cucumber/aruba/issues/144
|
989
|
+
[#125]: https://github.com/cucumber/aruba/issues/125
|
990
|
+
[#124]: https://github.com/cucumber/aruba/issues/124
|
991
|
+
[#121]: https://github.com/cucumber/aruba/issues/121
|
992
|
+
[#111]: https://github.com/cucumber/aruba/issues/111
|
993
|
+
[#110]: https://github.com/cucumber/aruba/issues/110
|
994
|
+
[#104]: https://github.com/cucumber/aruba/issues/104
|
995
|
+
[#102]: https://github.com/cucumber/aruba/issues/102
|
996
|
+
[#101]: https://github.com/cucumber/aruba/issues/101
|
997
|
+
[#95]: https://github.com/cucumber/aruba/issues/95
|
998
|
+
[#93]: https://github.com/cucumber/aruba/issues/93
|
999
|
+
[#91]: https://github.com/cucumber/aruba/issues/91
|
1000
|
+
[#89]: https://github.com/cucumber/aruba/issues/89
|
1001
|
+
[#85]: https://github.com/cucumber/aruba/issues/85
|
1002
|
+
[#71]: https://github.com/cucumber/aruba/issues/71
|
1003
|
+
[#48]: https://github.com/cucumber/aruba/issues/48
|
1004
|
+
[#47]: https://github.com/cucumber/aruba/issues/47
|
1005
|
+
[#44]: https://github.com/cucumber/aruba/issues/44
|
1006
|
+
[#43]: https://github.com/cucumber/aruba/issues/43
|
1007
|
+
[#42]: https://github.com/cucumber/aruba/issues/42
|
1008
|
+
[#40]: https://github.com/cucumber/aruba/issues/40
|
1009
|
+
[#31]: https://github.com/cucumber/aruba/issues/31
|
1010
|
+
[#30]: https://github.com/cucumber/aruba/issues/30
|
1011
|
+
[#27]: https://github.com/cucumber/aruba/issues/27
|
1012
|
+
[#18]: https://github.com/cucumber/aruba/issues/18
|
1013
|
+
[#17]: https://github.com/cucumber/aruba/issues/17
|
1014
|
+
[#16]: https://github.com/cucumber/aruba/issues/16
|
1015
|
+
[#15]: https://github.com/cucumber/aruba/issues/15
|
1016
|
+
[#13]: https://github.com/cucumber/aruba/issues/13
|
1017
|
+
[#9]: https://github.com/cucumber/aruba/issues/9
|
1018
|
+
[#7]: https://github.com/cucumber/aruba/issues/7
|
1019
|
+
[#5]: https://github.com/cucumber/aruba/issues/5
|
1020
|
+
[#4]: https://github.com/cucumber/aruba/issues/4
|
1021
|
+
[#1]: https://github.com/cucumber/aruba/issues/1
|
1022
|
+
|
1023
|
+
[cucumber/cucumber#521]: https://github.com/cucumber/cucumber/issues/521
|
1024
|
+
[jruby/jruby#316]: https://github.com/jruby/jruby/issues/316
|
1025
|
+
|
1026
|
+
<!-- Releases -->
|
1027
|
+
|
1028
|
+
[Unreleased]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.3...master
|
1029
|
+
[1.0.0.pre.alpha.3]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.2...v1.0.0.pre.alpha.3
|
1030
|
+
[1.0.0.pre.alpha.2]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.1...v1.0.0.pre.alpha.2
|
1031
|
+
[1.0.0.pre.alpha.1]: https://github.com/cucumber/aruba/compare/v0.14.1...v1.0.0.pre.alpha.1
|
1032
|
+
[0.14.9]: https://github.com/cucumber/aruba/compare/v0.14.8...v0.14.9
|
1033
|
+
[0.14.8]: https://github.com/cucumber/aruba/compare/v0.14.7...v0.14.8
|
1034
|
+
[0.14.7]: https://github.com/cucumber/aruba/compare/v0.14.6...v0.14.7
|
1035
|
+
[0.14.6]: https://github.com/cucumber/aruba/compare/v0.14.5...v0.14.6
|
1036
|
+
[0.14.5]: https://github.com/cucumber/aruba/compare/v0.14.4...v0.14.5
|
1037
|
+
[0.14.4]: https://github.com/cucumber/aruba/compare/v0.14.3...v0.14.4
|
1038
|
+
[0.14.3]: https://github.com/cucumber/aruba/compare/v0.14.2...v0.14.3
|
1039
|
+
[0.14.2]: https://github.com/cucumber/aruba/compare/v0.14.1...v0.14.2
|
1040
|
+
[0.14.1]: https://github.com/cucumber/aruba/compare/v0.14.0...v0.14.1
|
1041
|
+
[0.14.0]: https://github.com/cucumber/aruba/compare/v0.13.0...v0.14.0
|
1042
|
+
[0.13.0]: https://github.com/cucumber/aruba/compare/v0.12.0...v0.13.0
|
1043
|
+
[0.12.0]: https://github.com/cucumber/aruba/compare/v0.11.2...v0.12.0
|
1044
|
+
[0.11.2]: https://github.com/cucumber/aruba/compare/v0.11.1...v0.11.2
|
1045
|
+
[0.11.1]: https://github.com/cucumber/aruba/compare/v0.11.0...v0.11.1
|
1046
|
+
[0.11.0]: https://github.com/cucumber/aruba/compare/v0.11.0.pre4...v0.11.0
|
1047
|
+
[0.11.0.pre4]: https://github.com/cucumber/aruba/compare/v0.11.0.pre3...v0.11.0.pre4
|
1048
|
+
[0.11.0.pre3]: https://github.com/cucumber/aruba/compare/v0.11.0.pre2...v0.11.0.pre3
|
1049
|
+
[0.11.0.pre2]: https://github.com/cucumber/aruba/compare/v0.11.0.pre...v0.11.0.pre2
|
1050
|
+
[0.11.0.pre]: https://github.com/cucumber/aruba/compare/v0.10.2...v0.11.0.pre
|
1051
|
+
[0.10.2]: https://github.com/cucumber/aruba/compare/v0.10.1...v0.10.2
|
1052
|
+
[0.10.1]: https://github.com/cucumber/aruba/compare/v0.10.0...v0.10.1
|
1053
|
+
[0.10.0]: https://github.com/cucumber/aruba/compare/v0.10.0.pre2...v0.10.0
|
1054
|
+
[0.10.0.pre2]: https://github.com/cucumber/aruba/compare/v0.10.0.pre...v0.10.0.pre2
|
1055
|
+
[0.10.0.pre]: https://github.com/cucumber/aruba/compare/v0.9.0...v0.10.0
|
1056
|
+
[0.9.0]: https://github.com/cucumber/aruba/compare/v0.9.0.pre2...v0.9.0
|
1057
|
+
[0.9.0.pre2]: https://github.com/cucumber/aruba/compare/v0.9.0.pre...v0.9.0.pre2
|
1058
|
+
[0.9.0.pre]: https://github.com/cucumber/aruba/compare/v0.8.1...v0.9.0.pre
|
1059
|
+
[0.8.1]: https://github.com/cucumber/aruba/compare/v0.8.0...v0.8.1
|
1060
|
+
[0.8.0]: https://github.com/cucumber/aruba/compare/v0.8.0.pre3...v0.8.0
|
1061
|
+
[0.8.0.pre3]: https://github.com/cucumber/aruba/compare/v0.8.0.pre2...v0.8.0.pre3
|
1062
|
+
[0.8.0.pre2]: https://github.com/cucumber/aruba/compare/v0.8.0...v0.8.0.pre2
|
1063
|
+
[0.8.0.pre]: https://github.com/cucumber/aruba/compare/v0.7.4...v0.8.0.pre
|
1064
|
+
[0.7.4]: https://github.com/cucumber/aruba/compare/v0.7.2...v0.7.4
|
1065
|
+
[0.7.3]: https://github.com/cucumber/aruba/compare/v0.7.2...v0.7.3
|
1066
|
+
[0.7.2]: https://github.com/cucumber/aruba/compare/v0.7.1...v0.7.2
|
1067
|
+
[0.7.1]: https://github.com/cucumber/aruba/compare/v0.7.0...v0.7.1
|
1068
|
+
[0.7.0]: https://github.com/cucumber/aruba/compare/v0.6.2...v0.7.0
|
1069
|
+
[0.6.2]: https://github.com/cucumber/aruba/compare/v0.6.1...v0.6.2
|
1070
|
+
[0.6.1]: https://github.com/cucumber/aruba/compare/v0.6.0...v0.6.1
|
1071
|
+
[0.6.0]: https://github.com/cucumber/aruba/compare/v0.5.4...v0.6.0
|
1072
|
+
[0.5.4]: https://github.com/cucumber/aruba/compare/v0.5.3...v0.5.4
|
1073
|
+
[0.5.3]: https://github.com/cucumber/aruba/compare/v0.5.2...v0.5.3
|
1074
|
+
[0.5.2]: https://github.com/cucumber/aruba/compare/v0.5.1...v0.5.2
|
1075
|
+
[0.5.1]: https://github.com/cucumber/aruba/compare/v0.5.0...v0.5.1
|
1076
|
+
[0.5.0]: https://github.com/cucumber/aruba/compare/v0.4.10...v0.5.0
|
1077
|
+
[0.4.11]: https://github.com/cucumber/aruba/compare/v0.4.10...v0.4.11
|
1078
|
+
[0.4.10]: https://github.com/cucumber/aruba/compare/v0.4.9...v0.4.10
|
1079
|
+
[0.4.9]: https://github.com/cucumber/aruba/compare/v0.4.8...v0.4.9
|
1080
|
+
[0.4.8]: https://github.com/cucumber/aruba/compare/v0.4.7...v0.4.8
|
1081
|
+
[0.4.7]: https://github.com/cucumber/aruba/compare/v0.4.6...v0.4.7
|
1082
|
+
[0.4.6]: https://github.com/cucumber/aruba/compare/v0.4.5...v0.4.6
|
1083
|
+
[0.4.5]: https://github.com/cucumber/aruba/compare/v0.4.4...v0.4.5
|
1084
|
+
[0.4.4]: https://github.com/cucumber/aruba/compare/v0.4.3...v0.4.4
|
1085
|
+
[0.4.3]: https://github.com/cucumber/aruba/compare/v0.4.2...v0.4.3
|
1086
|
+
[0.4.2]: https://github.com/cucumber/aruba/compare/v0.4.1...v0.4.2
|
1087
|
+
[0.4.1]: https://github.com/cucumber/aruba/compare/v0.4.0...v0.4.1
|
1088
|
+
[0.4.0]: https://github.com/cucumber/aruba/compare/v0.3.7...v0.4.0
|
1089
|
+
[0.3.7]: https://github.com/cucumber/aruba/compare/v0.3.6...v0.3.7
|
1090
|
+
[0.3.6]: https://github.com/cucumber/aruba/compare/v0.3.5...v0.3.6
|
1091
|
+
[0.3.5]: https://github.com/cucumber/aruba/compare/v0.3.4...v0.3.5
|
1092
|
+
[0.3.4]: https://github.com/cucumber/aruba/compare/v0.3.3...v0.3.4
|
1093
|
+
[0.3.3]: https://github.com/cucumber/aruba/compare/v0.3.2...v0.3.3
|
1094
|
+
[0.3.2]: https://github.com/cucumber/aruba/compare/v0.3.1...v0.3.2
|
1095
|
+
[0.3.1]: https://github.com/cucumber/aruba/compare/v0.3.0...v0.3.1
|
1096
|
+
[0.3.0]: https://github.com/cucumber/aruba/compare/v0.2.8...v0.3.0
|
1097
|
+
[0.2.8]: https://github.com/cucumber/aruba/compare/v0.2.7...v0.2.8
|
1098
|
+
[0.2.7]: https://github.com/cucumber/aruba/compare/v0.2.6...v0.2.7
|
1099
|
+
[0.2.6]: https://github.com/cucumber/aruba/compare/v0.2.5...v0.2.6
|
1100
|
+
[0.2.5]: https://github.com/cucumber/aruba/compare/v0.2.4...v0.2.5
|
1101
|
+
[0.2.4]: https://github.com/cucumber/aruba/compare/v0.2.3...v0.2.4
|
1102
|
+
[0.2.3]: https://github.com/cucumber/aruba/compare/v0.2.2...v0.2.3
|
1103
|
+
[0.2.2]: https://github.com/cucumber/aruba/compare/v0.2.1...v0.2.2
|
1104
|
+
[0.2.1]: https://github.com/cucumber/aruba/compare/v0.2.0...v0.2.1
|
1105
|
+
[0.2.0]: https://github.com/cucumber/aruba/compare/v0.1.9...v0.2.0
|
1106
|
+
[0.1.9]: https://github.com/cucumber/aruba/compare/v0.1.8...v0.1.9
|
1107
|
+
[0.1.8]: https://github.com/cucumber/aruba/compare/v0.1.7...v0.1.8
|
1108
|
+
[0.1.7]: https://github.com/cucumber/aruba/compare/v0.1.6...v0.1.7
|
1109
|
+
[0.1.6]: https://github.com/cucumber/aruba/compare/v0.1.5...v0.1.6
|
1110
|
+
[0.1.5]: https://github.com/cucumber/aruba/compare/v0.1.4...v0.1.5
|
1111
|
+
[0.1.4]: https://github.com/cucumber/aruba/compare/v0.1.3...v0.1.4
|
1112
|
+
[0.1.3]: https://github.com/cucumber/aruba/compare/v0.1.2...v0.1.3
|
1113
|
+
[0.1.2]: https://github.com/cucumber/aruba/compare/v0.1.1...v0.1.2
|
1114
|
+
[0.1.1]: https://github.com/cucumber/aruba/compare/v0.1.0...v0.1.1
|
1115
|
+
[0.1.0]: https://github.com/cucumber/aruba/compare/ed6a175d23aaff62dbf355706996f276f304ae8b...v0.1.1
|
1116
|
+
|
1117
|
+
<!-- Other links -->
|
1118
|
+
|
1119
|
+
[1]: http://semver.org
|
1120
|
+
[2]: http://keepachangelog.com
|
1121
|
+
[3]: https://github.com/cucumber/aruba/blob/master/CONTRIBUTING.md
|