aruba 0.14.14 → 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.
Files changed (299) hide show
  1. checksums.yaml +4 -4
  2. data/.cucumberproignore +3 -0
  3. data/.github/ISSUE_TEMPLATE.md +48 -0
  4. data/.github/PULL_REQUEST_TEMPLATE.md +41 -0
  5. data/.gitignore +1 -0
  6. data/.rspec +1 -1
  7. data/.rubocop.yml +20 -181
  8. data/.rubocop_todo.yml +262 -0
  9. data/.simplecov +7 -5
  10. data/.travis.yml +53 -28
  11. data/.yardopts +3 -0
  12. data/CHANGELOG.md +301 -2
  13. data/CONTRIBUTING.md +247 -45
  14. data/Dockerfile +67 -0
  15. data/Gemfile +5 -114
  16. data/LICENSE +1 -1
  17. data/README.md +57 -180
  18. data/Rakefile +63 -32
  19. data/appveyor.yml +8 -11
  20. data/aruba.gemspec +47 -41
  21. data/bin/console +7 -0
  22. data/bin/test +9 -0
  23. data/cucumber.yml +4 -24
  24. data/doc/dependency_decisions.yml +35 -13
  25. data/docker-compose.yml +26 -0
  26. data/{bin → exe}/aruba +1 -1
  27. data/fixtures/cli-app/Rakefile +1 -1
  28. data/fixtures/cli-app/bin/aruba-test-cli +1 -1
  29. data/fixtures/cli-app/cli-app.gemspec +1 -2
  30. data/fixtures/cli-app/features/support/aruba.rb +1 -0
  31. data/fixtures/cli-app/features/support/env.rb +1 -1
  32. data/fixtures/cli-app/lib/cli/app/suppress_simple_cov_output.rb +3 -3
  33. data/fixtures/cli-app/lib/cli/app/version.rb +1 -1
  34. data/fixtures/cli-app/lib/cli/app.rb +1 -5
  35. data/fixtures/cli-app/spec/spec_helper.rb +4 -7
  36. data/fixtures/empty-app/Rakefile +1 -1
  37. data/fixtures/empty-app/cli-app.gemspec +1 -2
  38. data/fixtures/empty-app/lib/cli/app/version.rb +1 -1
  39. data/fixtures/getting-started-app/Gemfile +1 -1
  40. data/lib/aruba/api/commands.rb +85 -143
  41. data/lib/aruba/api/core.rb +48 -41
  42. data/lib/aruba/api/environment.rb +16 -7
  43. data/lib/aruba/api/filesystem.rb +43 -30
  44. data/lib/aruba/api/text.rb +3 -9
  45. data/lib/aruba/api.rb +6 -11
  46. data/lib/aruba/aruba_path.rb +27 -89
  47. data/lib/aruba/basic_configuration.rb +4 -24
  48. data/lib/aruba/cli.rb +1 -1
  49. data/lib/aruba/command.rb +2 -0
  50. data/lib/aruba/config/jruby.rb +1 -1
  51. data/lib/aruba/config_wrapper.rb +1 -1
  52. data/lib/aruba/configuration.rb +92 -0
  53. data/lib/aruba/console/help.rb +1 -7
  54. data/lib/aruba/console.rb +5 -5
  55. data/lib/aruba/contracts/absolute_path.rb +2 -2
  56. data/lib/aruba/contracts/relative_path.rb +2 -2
  57. data/lib/aruba/cucumber/command.rb +133 -92
  58. data/lib/aruba/cucumber/environment.rb +1 -1
  59. data/lib/aruba/cucumber/file.rb +21 -23
  60. data/lib/aruba/cucumber/hooks.rb +18 -13
  61. data/lib/aruba/cucumber/testing_frameworks.rb +74 -50
  62. data/lib/aruba/cucumber.rb +0 -6
  63. data/lib/aruba/event_bus/name_resolver.rb +5 -16
  64. data/lib/aruba/hooks.rb +1 -1
  65. data/lib/aruba/in_config_wrapper.rb +5 -1
  66. data/lib/aruba/initializer.rb +36 -42
  67. data/lib/aruba/matchers/base/base_matcher.rb +2 -2
  68. data/lib/aruba/matchers/base/message_indenter.rb +19 -0
  69. data/lib/aruba/matchers/base/object_formatter.rb +2 -9
  70. data/lib/aruba/matchers/collection/include_an_object.rb +7 -9
  71. data/lib/aruba/matchers/command/be_successfully_executed.rb +6 -4
  72. data/lib/aruba/matchers/command/have_exit_status.rb +14 -4
  73. data/lib/aruba/matchers/command/have_finished_in_time.rb +3 -5
  74. data/lib/aruba/matchers/command/have_output.rb +10 -5
  75. data/lib/aruba/matchers/command/have_output_on_stderr.rb +2 -2
  76. data/lib/aruba/matchers/command/have_output_on_stdout.rb +2 -2
  77. data/lib/aruba/matchers/command/have_output_size.rb +2 -2
  78. data/lib/aruba/matchers/directory/be_an_existing_directory.rb +5 -7
  79. data/lib/aruba/matchers/directory/have_sub_directory.rb +4 -6
  80. data/lib/aruba/matchers/file/be_a_command_found_in_path.rb +2 -4
  81. data/lib/aruba/matchers/file/be_an_existing_executable.rb +4 -6
  82. data/lib/aruba/matchers/file/be_an_existing_file.rb +5 -7
  83. data/lib/aruba/matchers/file/have_file_content.rb +4 -4
  84. data/lib/aruba/matchers/file/have_file_size.rb +6 -8
  85. data/lib/aruba/matchers/file/have_same_file_content.rb +5 -8
  86. data/lib/aruba/matchers/path/a_path_matching_pattern.rb +2 -4
  87. data/lib/aruba/matchers/path/be_an_absolute_path.rb +3 -5
  88. data/lib/aruba/matchers/path/be_an_existing_path.rb +4 -6
  89. data/lib/aruba/matchers/path/have_permissions.rb +6 -8
  90. data/lib/aruba/matchers/string/include_output_string.rb +8 -10
  91. data/lib/aruba/matchers/string/match_output_string.rb +9 -11
  92. data/lib/aruba/matchers/string/output_string_eq.rb +8 -10
  93. data/lib/aruba/platform.rb +0 -8
  94. data/lib/aruba/platforms/announcer.rb +30 -72
  95. data/lib/aruba/platforms/aruba_file_creator.rb +2 -6
  96. data/lib/aruba/platforms/aruba_fixed_size_file_creator.rb +2 -2
  97. data/lib/aruba/platforms/aruba_logger.rb +23 -7
  98. data/lib/aruba/platforms/command_monitor.rb +11 -103
  99. data/lib/aruba/platforms/determine_disk_usage.rb +56 -14
  100. data/lib/aruba/platforms/filesystem_status.rb +10 -14
  101. data/lib/aruba/platforms/local_environment.rb +2 -2
  102. data/lib/aruba/platforms/simple_table.rb +3 -11
  103. data/lib/aruba/platforms/unix_command_string.rb +7 -11
  104. data/lib/aruba/platforms/unix_environment_variables.rb +18 -27
  105. data/lib/aruba/platforms/unix_platform.rb +16 -50
  106. data/lib/aruba/platforms/unix_which.rb +2 -1
  107. data/lib/aruba/platforms/windows_command_string.rb +15 -10
  108. data/lib/aruba/platforms/windows_environment_variables.rb +43 -44
  109. data/lib/aruba/platforms/windows_platform.rb +4 -0
  110. data/lib/aruba/platforms/windows_which.rb +4 -3
  111. data/lib/aruba/processes/basic_process.rb +18 -20
  112. data/lib/aruba/processes/debug_process.rb +12 -3
  113. data/lib/aruba/processes/in_process.rb +17 -8
  114. data/lib/aruba/processes/spawn_process.rb +36 -39
  115. data/lib/aruba/rspec.rb +14 -36
  116. data/lib/aruba/runtime.rb +3 -6
  117. data/lib/aruba/setup.rb +1 -1
  118. data/lib/aruba/tasks/docker_helpers.rb +154 -0
  119. data/lib/aruba/version.rb +1 -1
  120. metadata +190 -242
  121. data/features/.nav +0 -72
  122. data/features/01_getting_started_with_aruba/cleanup_working_directory.feature +0 -57
  123. data/features/01_getting_started_with_aruba/run_commands.feature +0 -217
  124. data/features/01_getting_started_with_aruba/supported_testing_frameworks.feature +0 -88
  125. data/features/02_configure_aruba/activate_announcer_on_command_failure.feature +0 -38
  126. data/features/02_configure_aruba/basics.feature +0 -151
  127. data/features/02_configure_aruba/command_runtime_environment.feature +0 -129
  128. data/features/02_configure_aruba/console_history_file.feature +0 -38
  129. data/features/02_configure_aruba/exit_timeout.feature +0 -60
  130. data/features/02_configure_aruba/fixtures_directories.feature +0 -38
  131. data/features/02_configure_aruba/fixtures_path_prefix.feature +0 -23
  132. data/features/02_configure_aruba/home_directory.feature +0 -80
  133. data/features/02_configure_aruba/io_timeout.feature +0 -30
  134. data/features/02_configure_aruba/keep_ansi.feature +0 -30
  135. data/features/02_configure_aruba/log_level.feature +0 -38
  136. data/features/02_configure_aruba/physical_block_size.feature +0 -53
  137. data/features/02_configure_aruba/remove_ansi_escape_sequences.feature +0 -38
  138. data/features/02_configure_aruba/root_directory.feature +0 -30
  139. data/features/02_configure_aruba/startup_wait_time.feature +0 -48
  140. data/features/02_configure_aruba/working_directory.feature +0 -38
  141. data/features/03_testing_frameworks/cucumber/announce_information_for_troubleshooting.feature +0 -306
  142. data/features/03_testing_frameworks/cucumber/disable_bunder.feature +0 -18
  143. data/features/03_testing_frameworks/cucumber/steps/command/check_for_exit_statuses.feature +0 -136
  144. data/features/03_testing_frameworks/cucumber/steps/command/check_output_of_command.feature +0 -514
  145. data/features/03_testing_frameworks/cucumber/steps/command/check_stderr_of_command.feature +0 -68
  146. data/features/03_testing_frameworks/cucumber/steps/command/check_stdout_of_command.feature +0 -109
  147. data/features/03_testing_frameworks/cucumber/steps/command/debug_your_command_in_aruba.feature +0 -118
  148. data/features/03_testing_frameworks/cucumber/steps/command/run_a_command.feature +0 -66
  149. data/features/03_testing_frameworks/cucumber/steps/command/run_command_in_process.feature +0 -485
  150. data/features/03_testing_frameworks/cucumber/steps/command/run_command_interactively.feature +0 -90
  151. data/features/03_testing_frameworks/cucumber/steps/command/run_commands_which_require_a_shell.feature +0 -79
  152. data/features/03_testing_frameworks/cucumber/steps/command/send_signal_to_command.feature +0 -83
  153. data/features/03_testing_frameworks/cucumber/steps/command/stop_command.feature +0 -285
  154. data/features/03_testing_frameworks/cucumber/steps/environment/append_environment_variable.feature +0 -52
  155. data/features/03_testing_frameworks/cucumber/steps/environment/modify_home_variable_for_testing.feature +0 -62
  156. data/features/03_testing_frameworks/cucumber/steps/environment/prepend_environment_variable.feature +0 -52
  157. data/features/03_testing_frameworks/cucumber/steps/environment/set_environment_variable.feature +0 -49
  158. data/features/03_testing_frameworks/cucumber/steps/filesystem/append_to_file.feature +0 -45
  159. data/features/03_testing_frameworks/cucumber/steps/filesystem/cd_to_directory.feature +0 -33
  160. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_directory.feature +0 -57
  161. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_file.feature +0 -43
  162. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_file_content.feature +0 -143
  163. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_non_existence_of_directory.feature +0 -69
  164. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_non_existence_of_file.feature +0 -80
  165. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_permissions_of_file.feature +0 -39
  166. data/features/03_testing_frameworks/cucumber/steps/filesystem/compare_files.feature +0 -42
  167. data/features/03_testing_frameworks/cucumber/steps/filesystem/copy_file_or_directory.feature +0 -45
  168. data/features/03_testing_frameworks/cucumber/steps/filesystem/create_directory.feature +0 -57
  169. data/features/03_testing_frameworks/cucumber/steps/filesystem/create_file.feature +0 -76
  170. data/features/03_testing_frameworks/cucumber/steps/filesystem/move_file_or_directory.feature +0 -44
  171. data/features/03_testing_frameworks/cucumber/steps/filesystem/overwrite_file.feature +0 -72
  172. data/features/03_testing_frameworks/cucumber/steps/filesystem/remove_directory.feature +0 -38
  173. data/features/03_testing_frameworks/cucumber/steps/filesystem/remove_file.feature +0 -38
  174. data/features/03_testing_frameworks/cucumber/steps/filesystem/use_fixtures_for_setup_test.feature +0 -77
  175. data/features/03_testing_frameworks/rspec/hooks/define_after_hook_for_commands.feature +0 -43
  176. data/features/03_testing_frameworks/rspec/hooks/define_before_hook_for_commands.feature +0 -71
  177. data/features/03_testing_frameworks/rspec/setup_aruba_for_rspec.feature +0 -179
  178. data/features/04_aruba_api/command/find_a_started_command.feature +0 -83
  179. data/features/04_aruba_api/command/find_command_in_PATH.feature +0 -37
  180. data/features/04_aruba_api/command/read_stderr_of_command.feature +0 -46
  181. data/features/04_aruba_api/command/read_stdout_of_command.feature +0 -46
  182. data/features/04_aruba_api/command/run_command.feature +0 -423
  183. data/features/04_aruba_api/command/run_simple.feature +0 -254
  184. data/features/04_aruba_api/command/send_signal_to_command.feature +0 -53
  185. data/features/04_aruba_api/command/stop_all_commands.feature +0 -57
  186. data/features/04_aruba_api/command/stop_single_command.feature +0 -132
  187. data/features/04_aruba_api/command/terminate_all_commands.feature +0 -57
  188. data/features/04_aruba_api/command/use_last_command_started.feature +0 -50
  189. data/features/04_aruba_api/command/use_last_command_stopped.feature +0 -89
  190. data/features/04_aruba_api/core/expand_path.feature +0 -88
  191. data/features/04_aruba_api/environment/append_environment_variable.feature +0 -128
  192. data/features/04_aruba_api/environment/delete_environment_variable.feature +0 -63
  193. data/features/04_aruba_api/environment/prepend_environment_variable.feature +0 -128
  194. data/features/04_aruba_api/environment/set_environment_variable.feature +0 -376
  195. data/features/04_aruba_api/filesystem/cd_to_directory.feature +0 -184
  196. data/features/04_aruba_api/filesystem/check_existence_file_or_directory.feature +0 -62
  197. data/features/04_aruba_api/filesystem/check_if_path_is_absolute.feature +0 -48
  198. data/features/04_aruba_api/filesystem/check_if_path_is_directory.feature +0 -53
  199. data/features/04_aruba_api/filesystem/check_if_path_is_file.feature +0 -54
  200. data/features/04_aruba_api/filesystem/check_if_path_is_relative.feature +0 -48
  201. data/features/04_aruba_api/filesystem/create_directory.feature +0 -57
  202. data/features/04_aruba_api/filesystem/move_file_or_directory.feature +0 -119
  203. data/features/04_aruba_api/filesystem/report_disk_usage.feature +0 -152
  204. data/features/04_aruba_api/filesystem/use_fixtures.feature +0 -104
  205. data/features/04_aruba_api/text/extract_text.feature +0 -87
  206. data/features/04_aruba_api/text/replace_variables.feature +0 -45
  207. data/features/04_aruba_api/text/sanitize_text.feature +0 -228
  208. data/features/04_aruba_api/text/unescape_text.feature +0 -127
  209. data/features/05_use_rspec_matchers/command/check_timeouts.feature +0 -48
  210. data/features/05_use_rspec_matchers/directory/have_sub_directory.feature +0 -110
  211. data/features/05_use_rspec_matchers/file/be_a_command_found_in_path.feature +0 -115
  212. data/features/05_use_rspec_matchers/file/be_existing_executable.feature +0 -88
  213. data/features/05_use_rspec_matchers/file/be_existing_file.feature +0 -82
  214. data/features/05_use_rspec_matchers/file/have_file_content.feature +0 -123
  215. data/features/05_use_rspec_matchers/file/have_file_size.feature +0 -107
  216. data/features/05_use_rspec_matchers/path/be_an_absolute_path.feature +0 -74
  217. data/features/05_use_rspec_matchers/path/be_an_existing_path.feature +0 -97
  218. data/features/05_use_rspec_matchers/path/have_permissions.feature +0 -118
  219. data/features/06_use_aruba_cli/initialize_project_with_aruba.feature +0 -79
  220. data/features/06_use_aruba_cli/open_console.feature +0 -55
  221. data/features/08_other/improve_performance_if_using_jruby.feature +0 -37
  222. data/features/step_definitions/hooks.rb +0 -146
  223. data/features/support/aruba.rb +0 -7
  224. data/features/support/env.rb +0 -33
  225. data/features/support/simplecov_setup.rb +0 -11
  226. data/fixtures/spawn_process/stderr.sh +0 -3
  227. data/lib/aruba/api/deprecated.rb +0 -1155
  228. data/lib/aruba/config.rb +0 -107
  229. data/lib/aruba/cucumber/core.rb +0 -5
  230. data/lib/aruba/cucumber/deprecated.rb +0 -93
  231. data/lib/aruba/cucumber/rvm.rb +0 -3
  232. data/lib/aruba/in_process.rb +0 -16
  233. data/lib/aruba/jruby.rb +0 -4
  234. data/lib/aruba/matchers/deprecated/file.rb +0 -17
  235. data/lib/aruba/matchers/deprecated.rb +0 -1
  236. data/lib/aruba/matchers/path/match_path_pattern.rb +0 -41
  237. data/lib/aruba/matchers/rspec_matcher_include_regexp.rb +0 -25
  238. data/lib/aruba/platforms/disk_usage_calculator.rb +0 -20
  239. data/lib/aruba/reporting.rb +0 -126
  240. data/lib/aruba/spawn_process.rb +0 -14
  241. data/script/bootstrap +0 -24
  242. data/script/console +0 -16
  243. data/script/test +0 -3
  244. data/spec/aruba/api/bundler_spec.rb +0 -15
  245. data/spec/aruba/api/commands_spec.rb +0 -30
  246. data/spec/aruba/api/core_spec.rb +0 -184
  247. data/spec/aruba/api/deprecated_spec.rb +0 -421
  248. data/spec/aruba/api/filesystem_spec.rb +0 -746
  249. data/spec/aruba/api/runtime_spec.rb +0 -28
  250. data/spec/aruba/api_spec.rb +0 -73
  251. data/spec/aruba/aruba_path_spec.rb +0 -103
  252. data/spec/aruba/basic_configuration_spec.rb +0 -5
  253. data/spec/aruba/configuration_spec.rb +0 -5
  254. data/spec/aruba/hooks_spec.rb +0 -17
  255. data/spec/aruba/in_config_wrapper_spec.rb +0 -25
  256. data/spec/aruba/jruby_spec.rb +0 -73
  257. data/spec/aruba/matchers/command/have_output_size_spec.rb +0 -25
  258. data/spec/aruba/matchers/command_spec.rb +0 -174
  259. data/spec/aruba/matchers/deprecated_spec.rb +0 -120
  260. data/spec/aruba/matchers/directory_spec.rb +0 -57
  261. data/spec/aruba/matchers/file_spec.rb +0 -208
  262. data/spec/aruba/matchers/path_spec.rb +0 -58
  263. data/spec/aruba/platform/simple_table_spec.rb +0 -23
  264. data/spec/aruba/platform/windows_environment_variables_spec.rb +0 -500
  265. data/spec/aruba/platforms/unix_command_string_spec.rb +0 -17
  266. data/spec/aruba/platforms/windows_command_string_spec.rb +0 -22
  267. data/spec/aruba/processes/spawn_process_spec.rb +0 -112
  268. data/spec/aruba/rspec_spec.rb +0 -15
  269. data/spec/aruba/runtime_spec.rb +0 -29
  270. data/spec/event_bus/name_resolver_spec.rb +0 -68
  271. data/spec/event_bus_spec.rb +0 -158
  272. data/spec/spec_helper.rb +0 -22
  273. data/spec/support/configs/.keep +0 -0
  274. data/spec/support/configs/aruba.rb +0 -5
  275. data/spec/support/configs/pry.rb +0 -3
  276. data/spec/support/configs/rspec.rb +0 -15
  277. data/spec/support/helpers/.keep +0 -0
  278. data/spec/support/helpers/reporting.rb +0 -44
  279. data/spec/support/matchers/.keep +0 -0
  280. data/spec/support/matchers/option.rb +0 -35
  281. data/spec/support/shared_contexts/.keep +0 -0
  282. data/spec/support/shared_contexts/aruba.rb +0 -49
  283. data/spec/support/shared_examples/.keep +0 -0
  284. data/spec/support/shared_examples/configuration.rb +0 -116
  285. data/spec/support/shared_examples/directory.rb +0 -7
  286. data/spec/support/shared_examples/file.rb +0 -7
  287. data/templates/css/console.css +0 -24
  288. data/templates/css/filesystem.css +0 -42
  289. data/templates/css/pygments-autumn.css +0 -59
  290. data/templates/files.erb +0 -14
  291. data/templates/images/LICENSE +0 -22
  292. data/templates/images/folder.png +0 -0
  293. data/templates/images/page_white.png +0 -0
  294. data/templates/images/page_white_gherkin.png +0 -0
  295. data/templates/images/page_white_ruby.png +0 -0
  296. data/templates/index.erb +0 -20
  297. data/templates/js/filesystem.js +0 -5
  298. data/templates/js/jquery-1.11.3.min.js +0 -5
  299. data/templates/main.erb +0 -34
data/.travis.yml CHANGED
@@ -1,37 +1,62 @@
1
- # In order to install old Rubies, we need to use old Ubuntu distribution.
2
- dist: trusty
3
- sudo: false
4
1
  language: ruby
5
- script: script/test
6
- bundler_args: --without development debug
2
+ script: bundle exec rake test
7
3
  cache: bundler
8
4
 
9
- rvm:
10
- - 1.8.7
11
- - 1.9.2
12
- - 1.9.3
13
- - 2.0.0
14
- - 2.1.8
15
- - 2.2
16
- - 2.3
17
- - 2.4
18
- - 2.5
19
- - 2.6
20
- - 2.7
21
- - jruby-1.7
22
- - jruby-9.0
23
- - jruby-9.1
24
- - jruby-9.2.6.0
25
- - rbx-3
26
- matrix:
5
+ jobs:
27
6
  include:
28
- - rvm: jruby-1.7
29
- env: JRUBY_OPTS='--dev --1.8'
7
+ - rvm: ruby-head
8
+ stage: test
9
+ os: linux
10
+ - rvm: ruby-head
11
+ os: osx
12
+ - rvm: 2.7
13
+ os: linux
14
+ - rvm: 2.7
15
+ os: osx
16
+ - rvm: 2.6
17
+ os: linux
18
+ - rvm: 2.6
19
+ os: osx
20
+ - rvm: 2.5
21
+ os: linux
22
+ - rvm: 2.5
23
+ os: osx
24
+ - rvm: 2.4
25
+ os: linux
26
+ - rvm: 2.4
27
+ os: osx
28
+ - rvm: 2.4.0
29
+ os: linux
30
+ - rvm: jruby-9.2
31
+ os: linux
32
+ - rvm: jruby-9.2
33
+ os: osx
34
+ script: bundle exec rake spec
35
+ - stage: lint
36
+ script: bundle exec rake lint
37
+ rvm: 2.6.3
38
+ os: linux
30
39
  allow_failures:
31
- - rvm: rbx-3
40
+ - rvm: ruby-head
41
+ fast_finish: true
42
+
32
43
  branches:
33
44
  only:
34
45
  - master
35
- - still
46
+
47
+ # notifications:
48
+ # slack: cucumberbdd:oQFVhzsx4R94KWmjlejAJYnM
36
49
  env:
37
- - JRUBY_OPTS='--dev'
50
+ global:
51
+ - secure: l8uznA5K4K9mZ1krmP3lTMD8WcJ32qGxFOR3jubKHcOBSLB4xSzU2aIqjyJdO+rLzebkwamhJc8pGSIWOUDQYvFiX7splK+uEkbBJ5huAhXtLF4Qgl86bCWbEXYzN7rvn0DQfpJAovyFMNRMnfo70XhwqWzFsaYa7Z0YbqYsJE4=
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/.yardopts CHANGED
@@ -1,5 +1,8 @@
1
1
  --output doc/yard
2
2
  --exclude features/
3
+ --exclude bin/bootstrap
4
+ --exclude bin/test
5
+ --exclude license
3
6
  --verbose
4
7
  --markup-provider kramdown
5
8
  --markup markdown
data/CHANGELOG.md CHANGED
@@ -2,10 +2,229 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- This project will adhere to [Semantic Versioning][1] once version 1.0.0 is released.
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
+
35
+ ## [1.0.0.pre.alpha.5]
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])
40
+ * Refactor: Uncouple some of aruba's step definition code ([#666] by [luke-hill])
41
+ * Fix several JRuby build issues
42
+ ([bb770e2e](https://github.com/cucumber/aruba/commit/bb770e2e82ec09807b07eed1f4a124612eeee3f4),
43
+ [#669] and [#671] by [mvz])
44
+ * Clean up build ([#663] by [mvz])
45
+ * Handle announcing combined with DebugProcess ([#665] by [mvz])
46
+ * Allow both 'a' and 'the' in step, as documented ([#660] by [mvz])
47
+ * Fix rubocop issues ([#654] and [#659] by [luke-hill])
48
+ * Fix up JRuby build ([#657] by [mvz])
49
+ * Improve documentation for the `@debug` annotation ([#656] by [mvz])
50
+ * Support windows internal commands ([#655] by [xtrasimplicity])
51
+ * Do not set binmode on output temp files ([#652] by [mvz])
52
+ * Fix JRuby builds ([#637] by [mvz])
53
+ * Restore previously removed behaviors ([#644] by [mvz])
54
+ * Improve cucumber features ([#643] by [mvz])
55
+ * Move development dependency information to gemspec ([#631] by [luke-hill])
56
+ * Fix JRuby before :command helper hook ([#635] by [mvz])
57
+ * Replace problematic AnsiColor module with simple implementation ([#636] by [mvz])
58
+ * Drop Ruby 2.2 support ([#616] by [mvz] and [luke-hill])
59
+
60
+ ## [1.0.0.pre.alpha.4]
61
+
62
+ * Improve documentation: GitHub is not Github ([#629] by [amatsuda])
63
+ * TimeoutError is deprecated in favor of Timeout::Error ([#628] by [amatsuda])
64
+ * Allow use with Cucumber 3.x ([#626] by [mvz])
65
+
66
+ ## [1.0.0.pre.alpha.3]
67
+
68
+ ### Added
69
+
70
+ * Allow `#expand_path` to be used with absolute paths. This will emit a warning,
71
+ which can be silenced with a configuration option ([#540] by [mvz])
72
+ * Allow decimal seconds in Cucumber steps that set Aruba timeout values
73
+ ([#544] by [mvz])
74
+ * Make `have_file_content` diffable ([#562] by [cllns])
75
+ * Restore `@disable-bundler` hook ([#560] by [mvz])
76
+
77
+ ### Changed
78
+
79
+ * Improve documentation for users and developers ([#454], [#456], [#457], [#460],
80
+ [#459], [#461], [#475], [#494] by [olleolleolle], [maxmeyer], [mvz])
81
+ * Make forgetting `setup_aruba` a hard failure ([#510] by [mvz])
82
+ * Update dependencies ([#511], [#541], [#553] by [mvz], [#528] by [maxmeyer], [#615] by [luke-hill] and [mvz])
83
+ * Improve output of `#have_output` matcher ([#546] by [mvz])
84
+ * Removed `have_same_file_content_like` and `a_file_with_same_content_like`
85
+ matchers, in favour of `have_same_file_content_as` and
86
+ `a_file_with_same_content_as` ([#555] by [xtrasimplicity])
87
+
88
+ ### Removed
89
+
90
+ * Remove deprecated functionality ([#483], [#488], [#508] by [mvz])
91
+ * Remove broken RVM-related step definition ([#587] by [mvz])
92
+ * Drop support for Rubies below 2.2 ([#613] by [luke-hill])
93
+
94
+ ### Bug fixes
95
+
96
+ * Fix UTF-8 issues with jRuby ([#462] by [stamhankar999])
97
+ * Allow slashes in file matching regex ([#512] by [scottj97] with [richardxia])
98
+ * Avoid duplicate output appearing in certain cases ([#517] by [maxmeyer] and [mvz])
99
+ * Fix `@no-clobber` breaking process management ([#535] by [doudou])
100
+ * Fix command spawning when spaces occur in the path ([#520] by [mvz])
101
+ * Make exit in in-process runner behave like real Kernel#exit ([#594] by [grosser])
102
+ * Improve compatibility with Windows ([#618] by [mvz])
103
+ - Upcase ENV keys on Windows
104
+ - Properly escape command and arguments on Windows
105
+ - Use correct path separator on Windows
106
+
107
+ ### Developer experience and internal changes
108
+
109
+ * Fix test suite failures ([#452], [#497] by [maxmeyer] and [mvz]; [#487], [#509] by [mvz])
110
+ * Remove development gems for unsupported Rubinius platform ([#464] by [maxmeyer])
111
+ * Update `license_finder` dependency ([#466] by [maxmeyer])
112
+ * Restrict branches to run Travis ([#471] by [junaruga])
113
+ * Maintain Travis builds ([#476] by [maxmeyer]; [#493] [#532], [#536] by [mvz]; [#542], [#596], [#607] by [olleolleolle])
114
+ * Rename History.md to CHANGELOG.md and fix links and formatting, etc. to bring
115
+ it in line with [cucumber/cucumber#521] ([#481], [#482] by [jaysonesmith])
116
+ * Fix YARD documentation issues ([#491] [olleolleolle])
117
+ * Change maintainership ([#495], [#523] by [maxmeyer])
118
+ * Remove commented-out code ([#498] by [olleolleolle])
119
+ * Documentation fixups ([#504] by [roschaefer]; [#530] by [xtrasimplicity]; [#606] by [olleolleolle])
120
+ * Add 'stale' bot ([#507] by [maxmeyer]
121
+ * Update RuboCop and fix some offenses ([#514], [#537] by [mvz])
122
+ * Mark scenarios requiring external commands ([#515] [mvz])
123
+ * Remove cucumber features related to Aruba development ([#522], [#543], [#544] [mvz])
124
+ * Avoid long waits in feature suite ([#544] [mvz])
125
+ * Clean up internally used cuke tags and their implementation ([#548] by [mvz])
126
+ * Test with Ruby 2.5 and 2.6 ([#554] by [nicolasleger], [#578] by [mvz])
127
+ * Fix tests on Debian. ([#575] by [Heinrich])
128
+ * Update development dependencies ([#580] by [mvz])
129
+ * Start work on unifying still and master branches ([#583], [#584] by [mvz])
130
+ * Update CONTRIBUTING.md and drop bin/bootstrap ([#593] by [olleolleolle])
131
+ * Point to https version of GitHub repo URL ([#623] by [amatsuda])
132
+
133
+ ## [1.0.0.pre.alpha.2]
134
+
135
+ * Update examples for usage in README
136
+ * Fix environment manipulation ([#442])
137
+ * Update supported ruby versions in .travis.yml ([#449])
138
+ * Use `license_finder` version which is usable for rubies `< 2.3` ([#451])
139
+ * Wrap test runners in `bundle exec` ([#447])
140
+ * Fix wording in README ([#445])
141
+ * Restructure README and upload feature files to cucumber.pro ([#444])
142
+
143
+ ## [1.0.0.pre.alpha.1]
144
+
145
+ Note: These are changes w.r.t. Aruba version 0.14.1.
146
+
147
+ * Use new proposed structure for gems by bundler ([#439])
148
+ * Rename methods which run commands ([#438])
149
+ * Fix dependency error for install ([#427])
150
+ * Actually fail the build if rake test fails ([#433])
151
+ * Improve frozen-string-literals compatibility. ([#436])
152
+ * Fix running commands on Windows ([#387])
153
+ * Fix running commands on Windows ([#387])
154
+ * Set permissions to values which are supported on Windows ([#398], [#388])
155
+ * Remove Aruba::Reporting ([#389])
156
+ * Rename bin/cli to bin/aruba-test-cli to prevent name conflict ([#390])
157
+ * Drop support for `ruby < 1.9.3` and rubinius ([#385])
158
+ * Fixed wrong number of arguments in `Aruba::Platforms::WindowsEnvironmentVariables#delete`
159
+ ([#349], [#358] by [e2])
160
+ * Fixed colors in `script/bootstrap` ( [#352], [e2])
161
+ * Fixed use of removed `Utils`-module ([#347], [e2])
162
+ * Fixed exception handler in BasicProcess ([#357], [e2])
163
+ * Fixed step to check for existing of files ([#375], [rubbish])
164
+ * Fixed unset instance variable ([#372], [e2])
165
+ * Added vision and hints to project README ([#366])
166
+ * Fixed setting environment variables on Windows ([#358], [e2])
167
+ * Fixed the logic to determine disk usage ([#359], [e2])
168
+ * Prefixed exception in `rescue`-call to make it fail with a proper error
169
+ message ([#376])
170
+ * Run and build aruba in isolated environment via docker ([#353] by [e2], [#382])
171
+ * Run container with docker-compose without making docker-compose a required
172
+ dependency. Rake tasks read in the docker-compose.yml instead ([#382])
173
+ * Document developer rake tasks via cucumber features ([#382])
174
+ * Add more hints to CONTRIBUTING.md ([#382])
175
+ * Add TESTING.md (WIP) ([#382], [e2])
176
+ * Cleanup rake tasks via separate namespaces ([#382])
177
+ * Some more minor fixes ([#382])
178
+ * Don't run feature test if executable required for test is not installed
179
+ (python, bash, zsh, javac, ...) ([#382])
180
+ * Support for rubies older than 1.9.3 is discontinued - e.g 1.8.7 and 1.9.2
181
+ * aruba requires "cucumber 2" for the feature steps. The rest of aruba should
182
+ be usable by whatever testing framework you are using.
183
+ * Overwriting methods for configuration is discontinued. You need to use
184
+ `aruba.config.<variable>` or `Aruba.configure { |config| config.<variable>`
185
+ instead.
186
+ * "aruba/reporting" will be removed. Please use `@debug`-tag + `byebug`,
187
+ `debugger`, `pry` to troubleshoot your feature tests.
188
+ * Set environment variables will have only effect on `#run` and the like +
189
+ `#with_environment { }`.
190
+ * The process environment will be fully resetted between tests. Sharing state
191
+ via ENV['VAR'] = 'shared state' between tests will not be possible anymore.
192
+ Please make that obvious by using explicit steps or use the aruba API for
193
+ that.
194
+ * There will be a major cleanup for command execution. There will be only
195
+ `run` and `run_simple` left. `run_interactive` is replaced by `run`.
196
+ * Setting the root directory of aruba via method overwrite or configuration -
197
+ this should be your project root directory where the test suite is run.
198
+ * The direct use of "InProcess", "DebugProcess" and "SpawnProcess" is not
199
+ supported anymore. You need to use "Command" instead. But be careful, it has
200
+ a different API.
201
+ * HOME can be configured via `Aruba.configure {}` and defaults to
202
+ `File.join(aruba.config.root_directory, aruba.config.working_directory?)`
203
+ if `aruba/cucumber` or `aruba/rspec` is used.
204
+ * Use different working directories based on test suite - RSpec, Cucumber.
205
+ It's `tmp/rspec` and `tmp/cucumber` now to make sure they do not overwrite
206
+ the test results from each other.
207
+ * The use of `@interactive` is discontinued. You need to use
208
+ `#last_command_started`-method to get access to the interactively started
209
+ command.
210
+ * If multiple commands have been started, each output has to be check
211
+ separately
212
+
213
+ Scenario: Detect stdout from all processes
214
+ When I run `printf "hello world!\n"`
215
+ And I run `cat` interactively
216
+ And I type "hola"
217
+ And I type ""
218
+ Then the stdout should contain:
219
+ """
220
+ hello world!
221
+ """
222
+ And the stdout should contain:
223
+ """
224
+ hola
225
+ """
226
+ And the stderr should not contain anything
227
+
9
228
  ## [0.14.14]
10
229
 
11
230
  * Support Ruby 2.7 ([#677])
@@ -655,26 +874,37 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
655
874
  <!-- Contributors -->
656
875
 
657
876
  [AdrieanKhisbe]: https://github.com/AdrieanKhisbe
877
+ [Heinrich]: https://github.com/Heinrich
878
+ [JonRowe]: https://github.com/JonRowe
658
879
  [LTe]: https://github.com/LTe
659
880
  [aeden]: https://github.com/aeden
660
881
  [aknuds1]: https://github.com/aknuds1
661
882
  [alindeman]: https://github.com/alindeman
883
+ [amatsuda]: https://github.com/amatsuda
884
+ [argent-smith]: https://github.com/argent-smith
662
885
  [aslakhellesoy]: https://github.com/aslakhellesoy
886
+ [cllns]: https://github.com/cllns
663
887
  [davetron5000]: https://github.com/davetron5000
664
888
  [dchelimsky]: https://github.com/dchelimsky
889
+ [deivid-rodriguez]: https://github.com/deivid-rodriguez
665
890
  [doudou]: https://github.com/doudou
666
891
  [e2]: https://github.com/e2
667
892
  [greyblake]: https://github.com/greyblake
893
+ [grosser]: https://github.com/grosser
668
894
  [hectcastro]: https://github.com/hectcastro
669
895
  [jarib]: https://github.com/jarib
896
+ [jarl-dk]: https://github.com/jarl-dk
670
897
  [jaysonesmith]: https://github.com/jaysonesmith
671
- [JonRowe]: https://github.com/JonRowe
898
+ [junaruga]: https://github.com/junaruga
899
+ [koic]: https://github.com/koic
672
900
  [lithium3141]: https://github.com/lithium3141
901
+ [luke-hill]: https://github.com/luke-hill
673
902
  [mattwynne]: https://github.com/mattwynne
674
903
  [maxmeyer]: https://github.com/maxmeyer
675
904
  [msassak]: https://github.com/msassak
676
905
  [mvz]: https://github.com/mvz
677
906
  [myronmarston]: https://github.com/myronmarston
907
+ [nicolasleger]: https://github.com/nicolasleger
678
908
  [njam]: https://github.com/njam
679
909
  [nruth]: https://github.com/nruth
680
910
  [olleolleolle]: https://github.com/olleolleolle
@@ -688,40 +918,102 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
688
918
  [taylor]: https://github.com/taylor
689
919
  [tdreyno]: https://github.com/tdreyno
690
920
  [xtrasimplicity]: https://github.com/xtrasimplicity
921
+ [y-higuchi]: https://github.com/y-higuchi
691
922
 
692
923
  <!-- issues & pull requests -->
693
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
694
939
  [#677]: https://github.com/cucumber/aruba/pull/677
695
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
696
943
  [#673]: https://github.com/cucumber/aruba/pull/673
944
+ [#672]: https://github.com/cucumber/aruba/pull/672
945
+ [#671]: https://github.com/cucumber/aruba/pull/671
946
+ [#669]: https://github.com/cucumber/aruba/pull/669
697
947
  [#668]: https://github.com/cucumber/aruba/pull/668
948
+ [#666]: https://github.com/cucumber/aruba/pull/666
949
+ [#665]: https://github.com/cucumber/aruba/pull/665
698
950
  [#664]: https://github.com/cucumber/aruba/pull/664
951
+ [#663]: https://github.com/cucumber/aruba/pull/663
952
+ [#660]: https://github.com/cucumber/aruba/pull/660
953
+ [#659]: https://github.com/cucumber/aruba/pull/659
699
954
  [#658]: https://github.com/cucumber/aruba/pull/658
955
+ [#657]: https://github.com/cucumber/aruba/pull/657
956
+ [#656]: https://github.com/cucumber/aruba/pull/656
957
+ [#655]: https://github.com/cucumber/aruba/pull/655
958
+ [#654]: https://github.com/cucumber/aruba/pull/654
959
+ [#652]: https://github.com/cucumber/aruba/pull/652
700
960
  [#650]: https://github.com/cucumber/aruba/pull/650
701
961
  [#647]: https://github.com/cucumber/aruba/pull/647
702
962
  [#645]: https://github.com/cucumber/aruba/pull/645
963
+ [#644]: https://github.com/cucumber/aruba/pull/644
964
+ [#643]: https://github.com/cucumber/aruba/pull/643
703
965
  [#642]: https://github.com/cucumber/aruba/pull/642
704
966
  [#639]: https://github.com/cucumber/aruba/pull/639
705
967
  [#638]: https://github.com/cucumber/aruba/pull/638
968
+ [#637]: https://github.com/cucumber/aruba/pull/637
969
+ [#636]: https://github.com/cucumber/aruba/pull/636
970
+ [#635]: https://github.com/cucumber/aruba/pull/635
971
+ [#631]: https://github.com/cucumber/aruba/pull/631
972
+ [#629]: https://github.com/cucumber/aruba/pull/629
973
+ [#628]: https://github.com/cucumber/aruba/pull/628
974
+ [#626]: https://github.com/cucumber/aruba/pull/626
975
+ [#623]: https://github.com/cucumber/aruba/pull/623
706
976
  [#622]: https://github.com/cucumber/aruba/pull/622
707
977
  [#621]: https://github.com/cucumber/aruba/pull/621
708
978
  [#620]: https://github.com/cucumber/aruba/pull/620
979
+ [#618]: https://github.com/cucumber/aruba/pull/618
980
+ [#616]: https://github.com/cucumber/aruba/pull/616
981
+ [#615]: https://github.com/cucumber/aruba/pull/615
982
+ [#613]: https://github.com/cucumber/aruba/pull/613
709
983
  [#612]: https://github.com/cucumber/aruba/pull/612
710
984
  [#611]: https://github.com/cucumber/aruba/pull/611
711
985
  [#610]: https://github.com/cucumber/aruba/pull/610
986
+ [#607]: https://github.com/cucumber/aruba/pull/607
987
+ [#606]: https://github.com/cucumber/aruba/pull/606
712
988
  [#604]: https://github.com/cucumber/aruba/pull/604
713
989
  [#603]: https://github.com/cucumber/aruba/pull/603
714
990
  [#602]: https://github.com/cucumber/aruba/pull/602
715
991
  [#601]: https://github.com/cucumber/aruba/pull/601
716
992
  [#597]: https://github.com/cucumber/aruba/pull/597
993
+ [#596]: https://github.com/cucumber/aruba/pull/596
994
+ [#594]: https://github.com/cucumber/aruba/pull/594
995
+ [#593]: https://github.com/cucumber/aruba/pull/593
717
996
  [#591]: https://github.com/cucumber/aruba/pull/591
718
997
  [#588]: https://github.com/cucumber/aruba/pull/588
998
+ [#587]: https://github.com/cucumber/aruba/pull/587
719
999
  [#585]: https://github.com/cucumber/aruba/pull/585
1000
+ [#584]: https://github.com/cucumber/aruba/pull/584
1001
+ [#583]: https://github.com/cucumber/aruba/pull/583
720
1002
  [#582]: https://github.com/cucumber/aruba/pull/582
1003
+ [#581]: https://github.com/cucumber/aruba/pull/581
1004
+ [#580]: https://github.com/cucumber/aruba/pull/580
1005
+ [#578]: https://github.com/cucumber/aruba/pull/578
1006
+ [#575]: https://github.com/cucumber/aruba/pull/575
721
1007
  [#572]: https://github.com/cucumber/aruba/pull/572
722
1008
  [#571]: https://github.com/cucumber/aruba/pull/571
1009
+ [#570]: https://github.com/cucumber/aruba/pull/570
1010
+ [#562]: https://github.com/cucumber/aruba/pull/562
723
1011
  [#561]: https://github.com/cucumber/aruba/pull/561
1012
+ [#560]: https://github.com/cucumber/aruba/pull/560
724
1013
  [#557]: https://github.com/cucumber/aruba/pull/557
1014
+ [#555]: https://github.com/cucumber/aruba/pull/555
1015
+ [#554]: https://github.com/cucumber/aruba/pull/554
1016
+ [#553]: https://github.com/cucumber/aruba/pull/553
725
1017
  [#551]: https://github.com/cucumber/aruba/pull/551
726
1018
  [#548]: https://github.com/cucumber/aruba/pull/548
727
1019
  [#546]: https://github.com/cucumber/aruba/pull/546
@@ -894,6 +1186,13 @@ This document is formatted according to the principles of [Keep A CHANGELOG][2].
894
1186
 
895
1187
  <!-- Releases -->
896
1188
 
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
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
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
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
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
1195
+ [1.0.0.pre.alpha.1]: https://github.com/cucumber/aruba/compare/v0.14.1...v1.0.0.pre.alpha.1
897
1196
  [0.14.14]: https://github.com/cucumber/aruba/compare/v0.14.13...v0.14.14
898
1197
  [0.14.13]: https://github.com/cucumber/aruba/compare/v0.14.12...v0.14.13
899
1198
  [0.14.12]: https://github.com/cucumber/aruba/compare/v0.14.11...v0.14.12