aruba 0.14.14 → 1.0.0.pre.alpha.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (246) hide show
  1. checksums.yaml +5 -5
  2. data/.cucumberproignore +3 -0
  3. data/.github/ISSUE_TEMPLATE.md +48 -0
  4. data/.github/PULL_REQUEST_TEMPLATE.md +39 -0
  5. data/.gitignore +1 -0
  6. data/.rspec +1 -0
  7. data/.rubocop.yml +1 -5
  8. data/.travis.yml +35 -27
  9. data/CONTRIBUTING.md +131 -29
  10. data/Dockerfile +67 -0
  11. data/Gemfile +33 -80
  12. data/History.md +602 -0
  13. data/README.md +24 -196
  14. data/Rakefile +87 -27
  15. data/appveyor.yml +0 -1
  16. data/aruba.gemspec +30 -40
  17. data/bin/bootstrap +34 -0
  18. data/bin/build +3 -0
  19. data/{script → bin}/console +0 -0
  20. data/bin/release +3 -0
  21. data/bin/test +9 -0
  22. data/cucumber.yml +1 -3
  23. data/docker-compose.yml +26 -0
  24. data/{bin → exec}/aruba +0 -0
  25. data/fixtures/cli-app/README.md +1 -1
  26. data/fixtures/cli-app/features/support/aruba.rb +1 -0
  27. data/fixtures/cli-app/features/support/env.rb +1 -1
  28. data/fixtures/cli-app/lib/cli/app.rb +1 -5
  29. data/fixtures/cli-app/spec/spec_helper.rb +1 -6
  30. data/fixtures/empty-app/lib/cli/app.rb +2 -0
  31. data/lib/aruba/api.rb +3 -3
  32. data/lib/aruba/api/{commands.rb → command.rb} +4 -30
  33. data/lib/aruba/api/core.rb +8 -25
  34. data/lib/aruba/api/deprecated.rb +150 -408
  35. data/lib/aruba/api/filesystem.rb +17 -2
  36. data/lib/aruba/api/rvm.rb +44 -0
  37. data/lib/aruba/aruba_path.rb +56 -32
  38. data/lib/aruba/basic_configuration.rb +3 -5
  39. data/lib/aruba/colorizer.rb +99 -10
  40. data/lib/aruba/command.rb +0 -2
  41. data/lib/aruba/config.rb +5 -5
  42. data/lib/aruba/config/jruby.rb +5 -15
  43. data/lib/aruba/console.rb +2 -0
  44. data/lib/aruba/console/help.rb +1 -7
  45. data/lib/aruba/cucumber.rb +0 -2
  46. data/lib/aruba/cucumber/command.rb +98 -72
  47. data/lib/aruba/cucumber/file.rb +15 -3
  48. data/lib/aruba/cucumber/hooks.rb +71 -10
  49. data/lib/aruba/event_bus/name_resolver.rb +2 -10
  50. data/lib/aruba/generators/script_file.rb +1 -1
  51. data/lib/aruba/in_process.rb +0 -2
  52. data/lib/aruba/initializer.rb +4 -14
  53. data/lib/aruba/matchers/base/object_formatter.rb +0 -5
  54. data/lib/aruba/matchers/file/have_same_file_content.rb +5 -5
  55. data/lib/aruba/matchers/string/output_string_eq.rb +1 -1
  56. data/lib/aruba/platforms/announcer.rb +11 -16
  57. data/lib/aruba/platforms/aruba_file_creator.rb +1 -5
  58. data/lib/aruba/platforms/aruba_logger.rb +1 -5
  59. data/lib/aruba/platforms/command_monitor.rb +10 -14
  60. data/lib/aruba/platforms/determine_disk_usage.rb +8 -3
  61. data/lib/aruba/platforms/filesystem_status.rb +1 -5
  62. data/lib/aruba/platforms/unix_command_string.rb +1 -8
  63. data/lib/aruba/platforms/unix_environment_variables.rb +6 -8
  64. data/lib/aruba/platforms/unix_platform.rb +9 -22
  65. data/lib/aruba/platforms/unix_which.rb +4 -0
  66. data/lib/aruba/platforms/windows_command_string.rb +6 -14
  67. data/lib/aruba/platforms/windows_environment_variables.rb +4 -16
  68. data/lib/aruba/platforms/windows_which.rb +4 -0
  69. data/lib/aruba/processes/basic_process.rb +22 -18
  70. data/lib/aruba/processes/spawn_process.rb +12 -35
  71. data/lib/aruba/rspec.rb +1 -0
  72. data/lib/aruba/runtime.rb +3 -4
  73. data/lib/aruba/setup.rb +9 -11
  74. data/lib/aruba/spawn_process.rb +1 -4
  75. data/lib/aruba/tasks/docker_helpers.rb +158 -0
  76. data/lib/aruba/version.rb +1 -1
  77. metadata +62 -230
  78. data/CHANGELOG.md +0 -991
  79. data/features/.nav +0 -72
  80. data/features/01_getting_started_with_aruba/cleanup_working_directory.feature +0 -57
  81. data/features/01_getting_started_with_aruba/run_commands.feature +0 -217
  82. data/features/01_getting_started_with_aruba/supported_testing_frameworks.feature +0 -88
  83. data/features/02_configure_aruba/activate_announcer_on_command_failure.feature +0 -38
  84. data/features/02_configure_aruba/basics.feature +0 -151
  85. data/features/02_configure_aruba/command_runtime_environment.feature +0 -129
  86. data/features/02_configure_aruba/console_history_file.feature +0 -38
  87. data/features/02_configure_aruba/exit_timeout.feature +0 -60
  88. data/features/02_configure_aruba/fixtures_directories.feature +0 -38
  89. data/features/02_configure_aruba/fixtures_path_prefix.feature +0 -23
  90. data/features/02_configure_aruba/home_directory.feature +0 -80
  91. data/features/02_configure_aruba/io_timeout.feature +0 -30
  92. data/features/02_configure_aruba/keep_ansi.feature +0 -30
  93. data/features/02_configure_aruba/log_level.feature +0 -38
  94. data/features/02_configure_aruba/physical_block_size.feature +0 -53
  95. data/features/02_configure_aruba/remove_ansi_escape_sequences.feature +0 -38
  96. data/features/02_configure_aruba/root_directory.feature +0 -30
  97. data/features/02_configure_aruba/startup_wait_time.feature +0 -48
  98. data/features/02_configure_aruba/working_directory.feature +0 -38
  99. data/features/03_testing_frameworks/cucumber/announce_information_for_troubleshooting.feature +0 -306
  100. data/features/03_testing_frameworks/cucumber/disable_bunder.feature +0 -18
  101. data/features/03_testing_frameworks/cucumber/steps/command/check_for_exit_statuses.feature +0 -136
  102. data/features/03_testing_frameworks/cucumber/steps/command/check_output_of_command.feature +0 -514
  103. data/features/03_testing_frameworks/cucumber/steps/command/check_stderr_of_command.feature +0 -68
  104. data/features/03_testing_frameworks/cucumber/steps/command/check_stdout_of_command.feature +0 -109
  105. data/features/03_testing_frameworks/cucumber/steps/command/debug_your_command_in_aruba.feature +0 -118
  106. data/features/03_testing_frameworks/cucumber/steps/command/run_a_command.feature +0 -66
  107. data/features/03_testing_frameworks/cucumber/steps/command/run_command_in_process.feature +0 -485
  108. data/features/03_testing_frameworks/cucumber/steps/command/run_command_interactively.feature +0 -90
  109. data/features/03_testing_frameworks/cucumber/steps/command/run_commands_which_require_a_shell.feature +0 -79
  110. data/features/03_testing_frameworks/cucumber/steps/command/send_signal_to_command.feature +0 -83
  111. data/features/03_testing_frameworks/cucumber/steps/command/stop_command.feature +0 -285
  112. data/features/03_testing_frameworks/cucumber/steps/environment/append_environment_variable.feature +0 -52
  113. data/features/03_testing_frameworks/cucumber/steps/environment/modify_home_variable_for_testing.feature +0 -62
  114. data/features/03_testing_frameworks/cucumber/steps/environment/prepend_environment_variable.feature +0 -52
  115. data/features/03_testing_frameworks/cucumber/steps/environment/set_environment_variable.feature +0 -49
  116. data/features/03_testing_frameworks/cucumber/steps/filesystem/append_to_file.feature +0 -45
  117. data/features/03_testing_frameworks/cucumber/steps/filesystem/cd_to_directory.feature +0 -33
  118. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_directory.feature +0 -57
  119. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_existence_of_file.feature +0 -43
  120. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_file_content.feature +0 -143
  121. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_non_existence_of_directory.feature +0 -69
  122. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_non_existence_of_file.feature +0 -80
  123. data/features/03_testing_frameworks/cucumber/steps/filesystem/check_permissions_of_file.feature +0 -39
  124. data/features/03_testing_frameworks/cucumber/steps/filesystem/compare_files.feature +0 -42
  125. data/features/03_testing_frameworks/cucumber/steps/filesystem/copy_file_or_directory.feature +0 -45
  126. data/features/03_testing_frameworks/cucumber/steps/filesystem/create_directory.feature +0 -57
  127. data/features/03_testing_frameworks/cucumber/steps/filesystem/create_file.feature +0 -76
  128. data/features/03_testing_frameworks/cucumber/steps/filesystem/move_file_or_directory.feature +0 -44
  129. data/features/03_testing_frameworks/cucumber/steps/filesystem/overwrite_file.feature +0 -72
  130. data/features/03_testing_frameworks/cucumber/steps/filesystem/remove_directory.feature +0 -38
  131. data/features/03_testing_frameworks/cucumber/steps/filesystem/remove_file.feature +0 -38
  132. data/features/03_testing_frameworks/cucumber/steps/filesystem/use_fixtures_for_setup_test.feature +0 -77
  133. data/features/03_testing_frameworks/rspec/hooks/define_after_hook_for_commands.feature +0 -43
  134. data/features/03_testing_frameworks/rspec/hooks/define_before_hook_for_commands.feature +0 -71
  135. data/features/03_testing_frameworks/rspec/setup_aruba_for_rspec.feature +0 -179
  136. data/features/04_aruba_api/command/find_a_started_command.feature +0 -83
  137. data/features/04_aruba_api/command/find_command_in_PATH.feature +0 -37
  138. data/features/04_aruba_api/command/read_stderr_of_command.feature +0 -46
  139. data/features/04_aruba_api/command/read_stdout_of_command.feature +0 -46
  140. data/features/04_aruba_api/command/run_command.feature +0 -423
  141. data/features/04_aruba_api/command/run_simple.feature +0 -254
  142. data/features/04_aruba_api/command/send_signal_to_command.feature +0 -53
  143. data/features/04_aruba_api/command/stop_all_commands.feature +0 -57
  144. data/features/04_aruba_api/command/stop_single_command.feature +0 -132
  145. data/features/04_aruba_api/command/terminate_all_commands.feature +0 -57
  146. data/features/04_aruba_api/command/use_last_command_started.feature +0 -50
  147. data/features/04_aruba_api/command/use_last_command_stopped.feature +0 -89
  148. data/features/04_aruba_api/core/expand_path.feature +0 -88
  149. data/features/04_aruba_api/environment/append_environment_variable.feature +0 -128
  150. data/features/04_aruba_api/environment/delete_environment_variable.feature +0 -63
  151. data/features/04_aruba_api/environment/prepend_environment_variable.feature +0 -128
  152. data/features/04_aruba_api/environment/set_environment_variable.feature +0 -376
  153. data/features/04_aruba_api/filesystem/cd_to_directory.feature +0 -184
  154. data/features/04_aruba_api/filesystem/check_existence_file_or_directory.feature +0 -62
  155. data/features/04_aruba_api/filesystem/check_if_path_is_absolute.feature +0 -48
  156. data/features/04_aruba_api/filesystem/check_if_path_is_directory.feature +0 -53
  157. data/features/04_aruba_api/filesystem/check_if_path_is_file.feature +0 -54
  158. data/features/04_aruba_api/filesystem/check_if_path_is_relative.feature +0 -48
  159. data/features/04_aruba_api/filesystem/create_directory.feature +0 -57
  160. data/features/04_aruba_api/filesystem/move_file_or_directory.feature +0 -119
  161. data/features/04_aruba_api/filesystem/report_disk_usage.feature +0 -152
  162. data/features/04_aruba_api/filesystem/use_fixtures.feature +0 -104
  163. data/features/04_aruba_api/text/extract_text.feature +0 -87
  164. data/features/04_aruba_api/text/replace_variables.feature +0 -45
  165. data/features/04_aruba_api/text/sanitize_text.feature +0 -228
  166. data/features/04_aruba_api/text/unescape_text.feature +0 -127
  167. data/features/05_use_rspec_matchers/command/check_timeouts.feature +0 -48
  168. data/features/05_use_rspec_matchers/directory/have_sub_directory.feature +0 -110
  169. data/features/05_use_rspec_matchers/file/be_a_command_found_in_path.feature +0 -115
  170. data/features/05_use_rspec_matchers/file/be_existing_executable.feature +0 -88
  171. data/features/05_use_rspec_matchers/file/be_existing_file.feature +0 -82
  172. data/features/05_use_rspec_matchers/file/have_file_content.feature +0 -123
  173. data/features/05_use_rspec_matchers/file/have_file_size.feature +0 -107
  174. data/features/05_use_rspec_matchers/path/be_an_absolute_path.feature +0 -74
  175. data/features/05_use_rspec_matchers/path/be_an_existing_path.feature +0 -97
  176. data/features/05_use_rspec_matchers/path/have_permissions.feature +0 -118
  177. data/features/06_use_aruba_cli/initialize_project_with_aruba.feature +0 -79
  178. data/features/06_use_aruba_cli/open_console.feature +0 -55
  179. data/features/08_other/improve_performance_if_using_jruby.feature +0 -37
  180. data/features/step_definitions/hooks.rb +0 -146
  181. data/features/support/aruba.rb +0 -7
  182. data/features/support/env.rb +0 -33
  183. data/features/support/simplecov_setup.rb +0 -11
  184. data/lib/aruba/api/bundler.rb +0 -16
  185. data/lib/aruba/cucumber/deprecated.rb +0 -93
  186. data/lib/aruba/matchers/deprecated.rb +0 -1
  187. data/lib/aruba/matchers/deprecated/file.rb +0 -17
  188. data/lib/aruba/reporting.rb +0 -126
  189. data/script/bootstrap +0 -24
  190. data/script/test +0 -3
  191. data/spec/aruba/api/bundler_spec.rb +0 -15
  192. data/spec/aruba/api/commands_spec.rb +0 -30
  193. data/spec/aruba/api/core_spec.rb +0 -184
  194. data/spec/aruba/api/deprecated_spec.rb +0 -421
  195. data/spec/aruba/api/filesystem_spec.rb +0 -746
  196. data/spec/aruba/api/runtime_spec.rb +0 -28
  197. data/spec/aruba/api_spec.rb +0 -73
  198. data/spec/aruba/aruba_path_spec.rb +0 -103
  199. data/spec/aruba/basic_configuration_spec.rb +0 -5
  200. data/spec/aruba/configuration_spec.rb +0 -5
  201. data/spec/aruba/hooks_spec.rb +0 -17
  202. data/spec/aruba/in_config_wrapper_spec.rb +0 -25
  203. data/spec/aruba/jruby_spec.rb +0 -73
  204. data/spec/aruba/matchers/command/have_output_size_spec.rb +0 -25
  205. data/spec/aruba/matchers/command_spec.rb +0 -174
  206. data/spec/aruba/matchers/deprecated_spec.rb +0 -120
  207. data/spec/aruba/matchers/directory_spec.rb +0 -57
  208. data/spec/aruba/matchers/file_spec.rb +0 -208
  209. data/spec/aruba/matchers/path_spec.rb +0 -58
  210. data/spec/aruba/platform/simple_table_spec.rb +0 -23
  211. data/spec/aruba/platform/windows_environment_variables_spec.rb +0 -500
  212. data/spec/aruba/platforms/unix_command_string_spec.rb +0 -17
  213. data/spec/aruba/platforms/windows_command_string_spec.rb +0 -22
  214. data/spec/aruba/processes/spawn_process_spec.rb +0 -112
  215. data/spec/aruba/rspec_spec.rb +0 -15
  216. data/spec/aruba/runtime_spec.rb +0 -29
  217. data/spec/event_bus/name_resolver_spec.rb +0 -68
  218. data/spec/event_bus_spec.rb +0 -158
  219. data/spec/spec_helper.rb +0 -22
  220. data/spec/support/configs/.keep +0 -0
  221. data/spec/support/configs/aruba.rb +0 -5
  222. data/spec/support/configs/pry.rb +0 -3
  223. data/spec/support/configs/rspec.rb +0 -15
  224. data/spec/support/helpers/.keep +0 -0
  225. data/spec/support/helpers/reporting.rb +0 -44
  226. data/spec/support/matchers/.keep +0 -0
  227. data/spec/support/matchers/option.rb +0 -35
  228. data/spec/support/shared_contexts/.keep +0 -0
  229. data/spec/support/shared_contexts/aruba.rb +0 -49
  230. data/spec/support/shared_examples/.keep +0 -0
  231. data/spec/support/shared_examples/configuration.rb +0 -116
  232. data/spec/support/shared_examples/directory.rb +0 -7
  233. data/spec/support/shared_examples/file.rb +0 -7
  234. data/templates/css/console.css +0 -24
  235. data/templates/css/filesystem.css +0 -42
  236. data/templates/css/pygments-autumn.css +0 -59
  237. data/templates/files.erb +0 -14
  238. data/templates/images/LICENSE +0 -22
  239. data/templates/images/folder.png +0 -0
  240. data/templates/images/page_white.png +0 -0
  241. data/templates/images/page_white_gherkin.png +0 -0
  242. data/templates/images/page_white_ruby.png +0 -0
  243. data/templates/index.erb +0 -20
  244. data/templates/js/filesystem.js +0 -5
  245. data/templates/js/jquery-1.11.3.min.js +0 -5
  246. data/templates/main.erb +0 -34
@@ -1,991 +0,0 @@
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
- ## [0.14.14]
10
-
11
- * Support Ruby 2.7 ([#677])
12
-
13
- ## [0.14.13]
14
-
15
- * Loosen dependency on thor ([#676])
16
- * Mark setting of `root_directory` as deprecated in documentation ([#571])
17
-
18
- ## [0.14.12]
19
-
20
- * Loosen dependency on childprocess ([#673])
21
- * Fix Travis build ([#668])
22
- * Handle announcing with DebugProcess ([#664])
23
-
24
- ## [0.14.11]
25
-
26
- * Loosen childprocess dependency ([#658])
27
- * Do not set binmode on output temp files, so automatic line ending conversion works ([#650])
28
- * Improve deprecation suggestions ([#647])
29
- * Backport fixes to code organization, layout and spelling ([#645])
30
-
31
- ## [0.14.10]
32
-
33
- * Backport replacement of problematic AnsiColor module with simple
34
- implementation ([#642])
35
- * Undo preprecation of `#all_output`, `#all_stdout`, `#all_stderr` and
36
- `#in_current_directory` API methods, as well as of checking the combined
37
- output from all commands in cucumber steps ([#638])
38
- * Warn when deprecated files `aruba/in_process` and `aruba/spawn_process` are
39
- required ([#639])
40
- * Backport allowing decimal timeout values ([#621])
41
- * Move deprecated cucumber steps into a separate file ([#622])
42
- * Backport renaming of bin/cli in features ([#620])
43
- * Improve build set for CI ([#611])
44
- * Make JRuby before :command helper hook work on the environment the command
45
- will actually be run in ([#610], [#612])
46
- * Reorganize spec files to match master branch ([#603])
47
- * Reorganize feature files to match master branch ([#602])
48
-
49
- ## [0.14.9]
50
-
51
- * Formally deprecate `#use_clean_gemset` ([#597])
52
- * Improve deprecation messages ([#601])
53
- * Do not replace entire environment inside `#cd` block ([#604])
54
-
55
- ## [0.14.8]
56
-
57
- * Deprecate `#run` and `#run_simple` in favor of `#run_command` and
58
- `#run_command_and_stop` ([#585])
59
- * Update dependencies, most notably loosening the dependency on `childprocess`
60
- ([#591])
61
- * Properly warn about deprecated use of the run methods with one positional
62
- option ([#588])
63
-
64
- ## [0.14.7]
65
-
66
- * Fix Cucumber steps to use `have_same_file_content_as` matcher ([#572])
67
- * Update dependencies, most notably loosening the dependency on `ffi` ([#581])
68
-
69
- ## [0.14.6]
70
-
71
- * Document and fix `@disable-bundler` hook ([#561])
72
- * Deprecate `have_same_file_content_like` and `a_file_with_same_content_like`
73
- in favor of `have_same_file_content_as` and `a_file_with_same_content_as` ([#557])
74
-
75
- ## [0.14.5]
76
-
77
- * Loosen dependency on child_process ([#551])
78
-
79
- ## [0.14.4]
80
-
81
- * Fix command spawning when run in directories with spaces ([#490])
82
- * Ensure setup is still done when using `@no-clobber` ([#529])
83
- * Make `#expand_path` handle absolute paths correctly ([#486])
84
-
85
- ## [0.14.3]
86
-
87
- * Fix path bug ([#422])
88
- * Ensure non-deprecated methods do not use deprecated methods ([#489])
89
- * Update dependency on childprocess ([#516])
90
- * Fix encoding output on JRuby ([#516])
91
-
92
- ## [0.14.2]
93
-
94
- * Handle empty `JRUBY_OPTS` on JRuby
95
-
96
- ## [0.14.1]
97
-
98
- * Fixed bug in framework step
99
-
100
- ## [0.14.0]
101
-
102
- * Add `<project_root>/exe` to search path for commands: This is the new default
103
- if you setup a project with bundler.
104
- * Add some more steps to modify environment
105
-
106
- ## [0.13.0]
107
-
108
- * Add two new hooks for rspec and cucumber to make troubleshooting feature
109
- files easier ([#338]):
110
- * `command_content`: Outputs command content - helpful for scripts
111
- * `command_filesystem_status`: Outputs information like group, owner, mode,
112
- atime, mtime
113
- * Add generator to create ad hoc script file ([#323], [AdrieanKhisbe])
114
- * Colored announcer output similar to the color of `cucumber` tags: cyan
115
- * Fixed bug in announcer. It announces infomation several times due to
116
- duplicate announce-calls.
117
- * Refactorings to internal `#simple_table`-method (internal)
118
- * Refactored Announcer, now it supports blocks for announce as well (internal)
119
- * Fix circular require warnings ([#339])
120
- * Fix use of old instances variable `@io_wait` ([#341]). Now the
121
- default value for `io_wait_timeout` can be set correctly.
122
- * Make it possible to announce information on command error, using a new option
123
- called `activate_announcer_on_command_failure` ([#335], [njam])
124
- * Re-integrate `event-bus`-library into `aruba`-core ([#342])
125
-
126
- ## [0.12.0]
127
-
128
- * Add matcher to check if a command can be found in PATH ([#336])
129
- * Fixed issue with environment variables set by external libraries ([#321], [#320])
130
-
131
- ## [0.11.2]
132
-
133
- * Fixed problem with positional arguments in `#run_simple()` ([#322])
134
-
135
- ## [0.11.1]
136
-
137
- * Use fixed version of event-bus
138
- * Refactored and improved documentation (feature tests) in [#309]
139
-
140
- ## [0.11.0]
141
-
142
- * Accidently pushed to rubygems.org - yanked it afterwards
143
-
144
- ## [0.11.0.pre4]
145
-
146
- * Fixed syntax for Hash on ruby 1.8.7
147
- * Reorder rubies in .travis.yml
148
-
149
- ## [0.11.0.pre3]
150
-
151
- * Fixed syntax for proc on ruby 1.8.7
152
-
153
- ## [0.11.0.pre2]
154
-
155
- * Integrate `EventBus` to decouple announcers from starting, stopping commands
156
- etc. This uses nearly the same implementation like `cucumber`. ([#309])
157
- * Starting/Stopping a command directly (`command.start`, `command.stop`) is now
158
- reported to the command monitor and `last_command_stopped` is updated
159
- correctly
160
- * Added `#restart` to `Command` to make it possible to restart a command
161
- * Added check to prevent a command which has already been started, to be
162
- started again. Otherwise you've got hidden commands which are not stopped
163
- after a cucumber/rspec/minitest run.
164
- * Adding alot of documentation to `aruba`
165
- * Refactored `#run`: Now it wants you to pass a `Hash` containing the options.
166
- The old syntax is still supported, but is deprecated.
167
- * Added `#find_command` as experimental feature. It searches the started
168
- commands from last to first.
169
- * Added `be_an_executable` matcher
170
-
171
-
172
- ## [0.11.0.pre]
173
-
174
- * Set stop signal which should be used to stop a process after a timeout or
175
- used to terminate a process. This can be used to stop processes running
176
- docker + "systemd". If you send a systemd-enable container SIGINT it will be
177
- stopped.
178
- * Added a configurable amount of time after a command was started -
179
- `startup_wait_time`. Otherwise you get problems when a process takes to long to
180
- startup when you run in background and want to sent it a signal.
181
- * Replace `<variable>` in commandline, e.g. `<pid-last-command-started>`
182
- [experimental]
183
- * Added announce formatter for time spans, e.g. `startup_wait_time`
184
- * All process classes, e.g. `BasicProcess`, `SpawnProcess`, etc., are marked as
185
- private. Users should use `#run('cmd')` and not use the classes directly.
186
- * `rvm`-methods are deprecated. They are too ruby specific.
187
-
188
-
189
- ## [0.10.2]
190
-
191
- * Fixed problem in regex after merge of step definitions
192
-
193
-
194
- ## [0.10.1]
195
-
196
- * Merged remove steps for file and directory from 4 into 2 step definitions
197
-
198
-
199
- ## [0.10.0]
200
-
201
- * Fix `"#exit_timeout" is deprecated` error ([#314])
202
-
203
- ## [0.10.0.pre2]
204
-
205
- * Take over code from `RSpec::Support::ObjectFormatter` since `rspec-support`
206
- is not intended for public use.
207
-
208
- ## [0.10.0.pre]
209
-
210
- * Add some new steps to make writing documentation easier using "cucumber",
211
- "rspec", "minitest" together with "aruba" - see [Feature](features/getting_started/supported_testing_frameworks.feature)
212
- for some examples
213
- * Write output of commands directly to disk if SpawnProcess is used
214
- (see [85d74fcc](https://github.com/cucumber/aruba/commit/85d74fcca4fff4e753776925d8b003cddaa8041d))
215
- * Refactored API of cucumber steps to reduce the need for more methods and make
216
- it easier for users to write their own steps ([#306])
217
- * Added `aruba init` to the cli command to setup environment for aruba (issue
218
- [#308])
219
- * Added new method `delete_environment_variable` to remove environment variable
220
- * Added work around because of method name conflict between Capybara and RSpec
221
- ([1939c404](https://github.com/cucumber/aruba/commit/1939c4049d5195ffdd967485f50119bdd86e98a0))
222
-
223
-
224
- ## [0.9.0]
225
-
226
- * Fix feature test
227
- * Fix ordering in console
228
- * Fix bug in console handling SIGINT
229
- * Deprecated Aruba/Reporting before we remove it
230
-
231
- ## [0.9.0.pre2]
232
-
233
- * Redefine `#to_s` and `#inspect` for BasicProcess to reduce the sheer amount of
234
- information, if a command produces a lot of output
235
- * Added new matcher `#all_objects` to check if an object is included + an error
236
- message for failures which is similar to the `#all`-matcher of `RSpec`
237
- * Add `have_output`-, `have_output_on_stderr`, `have_output_on_stdout`-matchers
238
- * Replace all `assert_*` and `check_*`-methods through expectations
239
- * Add hook `@announce-output` to output both, stderr and stdout
240
- * Add a lot of documentation ([#260])
241
- * Replace `#last_command` through `#last_command_started` and
242
- `#last_command_stopped` to make it more explicit
243
- * Improve syntax highlighting in cucumber feature tests by adding programming
244
- language to `"""`-blocks
245
- * Rename tags `@ignore-*` to `@unsupported-on-*`
246
- * Introduce our own `BaseMatcher`-class to remove the dependency to `RSpec`'s
247
- private matcher APIs
248
- * Now we make the process started via `SpawnProcess` the leader of the group to
249
- kill all sub-processes more reliably
250
-
251
-
252
- ## [0.9.0.pre]
253
-
254
- * Improve documentation for filesystem api and move it to feature tests
255
- * Add logger to aruba. Its output can be captured by rspec.
256
- * Fix incorrect deprecation message for `check_file_presence` ([#292])
257
- * Fix for Gemfile excludes windows for many gems ([#282])
258
- * Make feature tests compatible with ruby 1.9.2
259
- * Gather disk usage for file(s) ([#294])
260
- * Replace `keep_ansi` config option by `remove_ansi_escape_sequences` option
261
- * Split up `#unescape` into `#extract_text` and `#unescape_text`
262
- * Use `UnixPlatform` and `WindowsPlatform` to make code for different platforms
263
- maintainable
264
- * Work around `ENV`-bug in JRuby by using `#dup` on `ENV.to_h` ([jruby/jruby#316])
265
- * Speed up test on JRuby by using `--dev`-flag
266
- * Work around problems when copying files with `cp` on MRI-ruby 1.9.2
267
- * Add `cmd.exe /c` for SpawnProcess on Windows ([#302])
268
- * Split up `#which` for Windows and Unix/Linux ([#304])
269
- * Add `aruba console` command to play around with aruba ([#305])
270
-
271
-
272
- ## [0.8.1]
273
-
274
- * Fix problem if working directory of aruba does not exist ([#286])
275
- * Re-add removed method `only_processes`
276
- * Fixed problem with last exit status
277
- * Added appveyor to run tests of aruba on Windows ([#287])
278
- * Make the home directory configurable and use Around/around-hook to apply it
279
- * Add announcer to output the full environment before a command is run
280
- * Use `prepend_environment_variable` to modify PATH for rspec integration
281
- * Add `VERSION` constant to aruba and use it for code which should be activated on >= 1.0.0
282
-
283
- ## [0.8.0]
284
-
285
- * Build with cucumber 1.3.x on ruby 1.8.7, with cucumber 2.x on all other platforms
286
- * Fixed bugs in aruba's cucumber steps
287
- * Disable use of `win32/file`
288
- * Fixed bug in `in_current_dir*` not returning the result of the block
289
- * Fixed checks for file content
290
- * Fixed selectors for DebugProcess and InProcess to support sub-classes as well
291
-
292
-
293
- ## [0.8.0.pre3]
294
-
295
- * Depend on cucumber 1.3.x for compatibility on ruby 1.8.7
296
- * Change PWD and OLDPW when `cd('path') {}` is used within that block
297
- * Make nesting of `cd` possible
298
- * Make `run` inside `cd` possible
299
- * Fixed some bugs
300
- * Move `Aruba.proces = InProcess|SpawnProcess|DebugProcess` to `aruba.config`
301
- * Deprecate direct use of `InProcess|SpawnProcess|DebugProcess`. Now `Command`
302
- needs to be used
303
- * Add new configuration options `command_launcher` and `main_klass` for
304
- deprecation of old-style `Aruba.process = <class>`, `:spawn` is the default
305
- value for the `command_launcher`-option
306
- * Added checks for version of `rspec-expectations` to support older `rspec`
307
- versions like `2.11`
308
- * Now each `path/to/dir` pushed to `aruba.current_directory` is `pop`ed as whole
309
- * Make testing of `aruba.current_directory` easier by supporting `end_with?` and `start_with?`
310
-
311
- ## [0.8.0.pre2]
312
-
313
- * Relax requirement on rspec-expectations (3.3 -> 2.11)
314
-
315
- ## [0.8.0.pre]
316
-
317
- * Make aruba compatible with "ruby 1.8.7" and "ruby 1.9.3" again ([#279])
318
- * Move more and more documentation to cucumber steps ([#268])
319
- * Refactoring of test suits, now rspec tests run randomly
320
- * Move Aruba constants to configuration class ([#271])
321
- * Added runtime configuration via `aruba.config` which is reset for each test run
322
- * Refactored hooks: now there are `after()` and `before()`-hooks, old
323
- `before_cmd`-hook is still working, but is deprecated, added new
324
- `after(:command)`-hook.
325
- * Refactored jruby-startup helper
326
- * Cleanup API by moving deprecated methods to separate class
327
- * Cleanup Core API - reduced to `cd`, `expand_path`, `setup_aruba` and use
328
- `expand_path` wherever possible ([#253])
329
- * Better isolation for environment variable manipulation - really helpful from 1.0.0 on
330
- * Move configuration files like `jruby.rb` to `aruba/config/`-directory
331
- * Change default exit timeout to 15 seconds to work around long running processes on travis
332
- * Use of instance variables like `@aruba_timeout_seconds` or
333
- `@aruba_io_wait_seconds` are deprecated.
334
- Use `Aruba.configure do |config| config.exit_timeout = 10` etc. for this.
335
-
336
- ## [0.7.4]
337
- * Really Fixed post install message
338
-
339
- ## [0.7.3]
340
- * Fixed post install message
341
-
342
- ## [0.7.2]
343
-
344
- * Do not trigger Announcer API deprecation warning ([#277])
345
-
346
- ## [0.7.1]
347
-
348
- * Do not break if `@interactive` is used
349
-
350
- ## [0.7.0]
351
-
352
- * Introducing `root_directory` ([#232])
353
- * Introducing fixtures directory ([#224])
354
- * Make sure a file/directory does not exist + Cleanup named file/directory steps ([#234])
355
- * Make matcher `have_permisions` public and add documentation ([#239])
356
- * Added matcher for file content ([#238])
357
- * Add rspec integrator ([#244])
358
- * Deprecate `_file` and `_directory` in method names ([#243])
359
- * Improve development environment ([#240])
360
- * Cleanup process management ([#257])
361
- * Make path content available through matchers and api metchods ([#250])
362
- * Refactor announcer to support user defined announce channels (fixes [#267])
363
- * `InProcess` requires that the working directory is determined on runtime not no loadtime
364
-
365
- ## [0.6.2]
366
-
367
- * Fixed minor [#223])
368
- * Added support for ruby 2.1.3 -- 2.1.5
369
- * Added support for comparison to a fixture file
370
-
371
- ## [0.6.1]
372
-
373
- * Added support for ruby 2.1.2
374
- * Added support for `~` expansion
375
- * Added support for `with_env`
376
-
377
- ## [0.6.0]
378
-
379
- * Dropped support for ruby 1.8
380
- * Added support for ruby 2.1.0 and 2.1.1
381
- * Added rspec 3.0.0 support
382
-
383
- ## [0.5.4]
384
-
385
- * Added support for piping in files ([#154], [maxmeyer], dg-vrnetze)
386
- * Added cucumber steps for environment variables ([#156], dg-vrnetze)
387
- * Added support for file mode ([#157], [maxmeyer], dg-vrnetze)
388
-
389
- ## [0.5.3]
390
-
391
- * Fix for UTF-8 support ([#151], [mattwynne], [jarl-dk])
392
- * Fix for open file leakage ([#150], [JonRowe])
393
-
394
- ## [0.5.2]
395
-
396
- * Plugin API for greater speed. Test Ruby CLI programs in a single Ruby process ([#148], [aslakhellesoy])
397
- * Fix memory leak when several commands are executed in a single run ([#144], [y-higuchi])
398
-
399
- ## [0.5.1]
400
-
401
- * Individual timeout settings when running commands ([#124], [jarl-dk])
402
- * Varous fixes for JRuby tests, should now work on more versions of JRuby
403
-
404
- ## [0.5.0]
405
-
406
- * Add `#with_file_content` to the DSL ([#110], [argent-smith])
407
- * Make JRuby performance tweaks optional ([#102], [taylor], [#125], [alindeman])
408
- * Add `assert_partial_output_interactive` so you can peek at the output from a running process ([#104], [taylor])
409
- * Add `assert_not_matching_output` ([#111], [argent-smith])
410
- * Add `remove_dir` ([#121], [LTe])
411
-
412
- ## [0.4.11]
413
-
414
- * Fix duplicated output ([#91], [robertwahler], [mattwynne])
415
- * Fix Gemspec format ([#101], [mattwynne])
416
-
417
- ## [0.4.10]
418
-
419
- * Fix broken JRuby file following rename of hook ([tdreyno])
420
- * Add terminate method to API ([taylor])
421
-
422
- ## [0.4.9]
423
-
424
- * Rename `before_run` hook to `before_cmd` ([mattwynne])
425
- * Fix 1.8.7 compatibility ([#95], [davetron5000])
426
-
427
- ## [0.4.8]
428
-
429
- * Add `before_run` hook ([mattwynne])
430
- * Add JRuby performance tweaks ([#93], [myronmarston], [mattwynne])
431
- * Invalid/Corrupt spec file for 0.4.7 - undefined method call for nil:Nilclass ([#47], [aslakhellesoy])
432
-
433
- ## [0.4.7]
434
-
435
- * Remove rdiscount dependency. ([#85], [aslakhellesoy])
436
- * Pin to ffi 1.0.9 since 1.0.10 is broken. ([aslakhellesoy])
437
- * Added file size specific steps to the Aruba API. ([#89], [hectcastro])
438
-
439
- ## [0.4.6]
440
-
441
- * Upgraded deps to latest gems. ([aslakhellesoy])
442
- * Added Regexp support to `Aruba::Api#assert_no_partial_output`. ([aslakhellesoy])
443
-
444
- ## [0.4.5]
445
-
446
- * Better assertion failure message when an exit code is not as expected.
447
- ([mattwynne])
448
-
449
- ## [0.4.4]
450
-
451
- * Fix various bugs with interative processes. ([mattwynne])
452
-
453
- ## [0.4.3]
454
-
455
- * Aruba reporting now creates an index file for reports, linking them all
456
- together. ([aslakhellesoy])
457
-
458
- ## [0.4.2]
459
-
460
- * Appending to a file creates the parent directory if it doesn't exist.
461
- ([aslakhellesoy])
462
-
463
- ## [0.4.1]
464
-
465
- * Move more logic into Aruba::Api ([aslakhellesoy])
466
-
467
- ## [0.4.0]
468
-
469
- * New, awesome HTML reporting feature that captures everything that happens
470
- during a scenario. ([aslakhellesoy])
471
- * ANSI escapes from output are stripped by default. Override this with the @ansi
472
- tag. ([aslakhellesoy])
473
-
474
- ## [0.3.7]
475
-
476
- * Make `Aruba::Api#get_process` return the last executed process with passed cmd
477
- ([greyblake])
478
- * Replace announce with puts to comply with cucumber 0.10.6 ([aslakhellesoy])
479
- * Fix childprocess STDIN to be synchronous ([#40], [#71], [lithium3141])
480
-
481
- ## [0.3.6]
482
-
483
- * Changed default value of `@aruba_timeout_seconds` from 1 to 3. ([aslakhellesoy])
484
- * Separate hooks and steps to make it easier to build your own steps on top of
485
- Aruba's API ([msassak])
486
- * `@no-clobber` to prevent cleanup before each scenario ([msassak])
487
-
488
- ## [0.3.5]
489
-
490
- * Store processes in an array to ensure order of operations on Ruby 1.8.x
491
- ([#48] [msassak])
492
-
493
- ## [0.3.4]
494
-
495
- * Use backticks (\`) instead of quotes (") to specify command line. Quote still
496
- works, but is deprecated. ([aeden], [aslakhellesoy])
497
-
498
- ## [0.3.3]
499
-
500
- * Updated RSpec development requirement to 2.5 ([rspeicher], [msassak],
501
- [aslakhellesoy])
502
- * Updated RubyGems dependency to 1.6.1 ([rspeicher])
503
-
504
- ## [0.3.2]
505
-
506
- * Wrong number of args in the When I overwrite step ([aslakhellesoy])
507
-
508
- ## [0.3.1]
509
-
510
- * Broken 0.3.0 release ([#43], [#44], [msassak])
511
- * Quotes (") and newline (\n) in step arguments are no longer unescaped. ([aslakhellesoy])
512
-
513
- ## [0.3.0]
514
-
515
- * Remove latency introduced in the 0.2.8 release ([#42], [msassak])
516
- * New stepdef `Then /^the stdout should contain:$/ do |partial_output|` ([aslakhellesoy])
517
- * Quotes (") and newline (\n) in step arguments no longer need to be backslash-escaped. ([aslakhellesoy])
518
-
519
- ## [0.2.8]
520
-
521
- * Replaced `background_process` with `childprocess`, a cross-platform process control
522
- library. This will allow Aruba to run on Windows and JRuby in addition to \*nix
523
- MRI. ([#16], [#27], [#31], [msassak], [jarib], [mattwynne], [aknuds1])
524
-
525
- ## [0.2.7]
526
-
527
- * Upgrade to Cucumber 0.10.0. ([aslakhellesoy])
528
- * `require 'aruba'` does nothing - you have to `require 'aruba/cucumber'` now. This
529
- is to prevent bundler from loading it when we don't want to. ([aslakhellesoy])
530
- * Outputting a lot of data causes process to time out ([#30], [msassak])
531
-
532
- ## [0.2.6]
533
-
534
- * You can set `@aruba_timeout_seconds` in a Before hook to tell Aruba to wait
535
- for a process to complete. Default: 1 second. ([aslakhellesoy])
536
- * Fixed small bug in `/^the stdout should contain exactly:$/` ([aslakhellesoy])
537
-
538
- ## [0.2.5]
539
-
540
- * Added 'a file named "whatever" should (not) exist' ([rspeicher])
541
- * Added 'a directory named "whatever" should (not) exist' ([rspeicher])
542
- * Added /^the stderr should contain exactly:"$/ ([aslakhellesoy])
543
- * Added /^the stdout should contain exactly:"$/ ([aslakhellesoy])
544
- * Added /it should pass with exactly:/ ([aslakhellesoy])
545
- * @announce, @announce-dir and @announce-cmd for interactive processes ([msassak])
546
- * Add step defs for detecting output, stdout and stderr by process name ([msassak])
547
- * Stop all processes before verifying filesystem changes to ensure async operations
548
- are complete ([#17], [msassak])
549
- * Outputting large amounts of data causes run steps to hang ([#18], [msassak])
550
-
551
- ## [0.2.4]
552
-
553
- * Added step definitions for removing files and checking presence of a single
554
- file. ([aslakhellesoy])
555
-
556
- ## [0.2.3]
557
-
558
- * Directory should not exist gives false-positive ([#13], [#15], [nruth])
559
- * Added step definitions for comparing file contents with regexps ([#9],
560
- [aslakhellesoy])
561
- * Always put ./bin at the beginning of $PATH to make it easier to run own
562
- executables ([#7], [aslakhellesoy])
563
- * Communication with interactive processes ([#4], [msassak])
564
- * Remove hyphens separating stdout and stderr ([aknuds1])
565
-
566
- ## [0.2.2]
567
-
568
- * Added a @bin tag that sets up './bin' first on the path ([aslakhellesoy])
569
- * Richer API making aruba easier to use from Ruby code. (Mark Nijhof, [aslakhellesoy])
570
- * No more support for RVM. Use rvm 1.9.2,1.8.7 exec cucumber .... instead. (Mark Nijhof, [aslakhellesoy])
571
-
572
- ## [0.2.1]
573
-
574
- * Always compare with RSpec should =~ instead of should match. This gives a diff when there is no match. ([aslakhellesoy])
575
-
576
- ## [0.2.0]
577
-
578
- * Added aruba.gemspec. ([dchelimsky])
579
- * Several step definitions regarding output have changed. ([#1], [aslakhellesoy])
580
-
581
- - /^I should see "([^\"]*)"$/
582
- + /^the output should contain "([^"]*)"$/
583
-
584
- - /^I should not see "([^\"]*)"$/
585
- + /^the output should not contain "([^"]*)"$/
586
-
587
- - /^I should see:$/
588
- + /^the output should contain:$/
589
-
590
- - /^I should not see:$/
591
- + /^the output should not contain:$/
592
-
593
- - /^I should see exactly "([^\"]*)"$/
594
- + /^the output should contain exactly "([^"]*)"$/
595
-
596
- - /^I should see exactly:$/
597
- + /^the output should contain exactly:$/
598
-
599
- - /^I should see matching \/([^\/]*)\/$/
600
- + /^the output should match \/([^\/]*)\/$/
601
-
602
- - /^I should see matching:$/
603
- + /^the output should match:$/
604
-
605
- ## [0.1.9]
606
-
607
- * If the GOTGEMS environment variable is set, bundler won't run (faster). ([aslakhellesoy])
608
-
609
- ## [0.1.8]
610
-
611
- * Use // instead of "" for "I should see matching" step. ([aslakhellesoy])
612
- * Replace rvm gemset character '%' with '@' for rvm 0.1.24 ([#5], Ashley Moran)
613
- * Support gem bundler, making it easier to specify gems. ([aslakhellesoy])
614
-
615
- ## [0.1.7]
616
-
617
- * New @announce-stderr tag ([robertwahler])
618
- * New "I should see matching" steps using Regexp ([robertwahler])
619
-
620
- ## [0.1.6]
621
-
622
- * `When /^I successfully run "(.*)"$/` now prints the combined output if exit
623
- status is not 0. ([aslakhellesoy])
624
- * Add bundle to list of common ruby scripts. ([aslakhellesoy])
625
-
626
- ## [0.1.5]
627
-
628
- * Added ability to map rvm versions to a specific version with config/aruba-rvm.yml. ([aslakhellesoy])
629
- * Check for presence of files. ([aslakhellesoy])
630
- * Allow specification of rvm gemsets. ([aslakhellesoy])
631
- * Detect ruby commands and use current ruby when rvm is not explicitly used. ([aslakhellesoy])
632
- * Added support for rvm, making it possible to choose Ruby interpreter. ([aslakhellesoy])
633
- * Added @announce-cmd, @announce-stdout and @announce tags, useful for seeing what's executed and outputted. ([aslakhellesoy])
634
-
635
- ## [0.1.4]
636
-
637
- * New step definition for appending to a file ([aslakhellesoy])
638
-
639
- ## [0.1.3]
640
-
641
- * New step definition for cd (change directory) ([aslakhellesoy])
642
-
643
- ## [0.1.2]
644
-
645
- * Separated API from Cucumber step definitions, makes this usable without Cucumber. ([aslakhellesoy])
646
-
647
- ## [0.1.1]
648
-
649
- * Better Regexp escaping ([dchelimsky])
650
-
651
- ## [0.1.0]
652
-
653
- * First release ([dchelimsky] and [aslakhellesoy])
654
-
655
- <!-- Contributors -->
656
-
657
- [AdrieanKhisbe]: https://github.com/AdrieanKhisbe
658
- [LTe]: https://github.com/LTe
659
- [aeden]: https://github.com/aeden
660
- [aknuds1]: https://github.com/aknuds1
661
- [alindeman]: https://github.com/alindeman
662
- [aslakhellesoy]: https://github.com/aslakhellesoy
663
- [davetron5000]: https://github.com/davetron5000
664
- [dchelimsky]: https://github.com/dchelimsky
665
- [doudou]: https://github.com/doudou
666
- [e2]: https://github.com/e2
667
- [greyblake]: https://github.com/greyblake
668
- [hectcastro]: https://github.com/hectcastro
669
- [jarib]: https://github.com/jarib
670
- [jaysonesmith]: https://github.com/jaysonesmith
671
- [JonRowe]: https://github.com/JonRowe
672
- [lithium3141]: https://github.com/lithium3141
673
- [mattwynne]: https://github.com/mattwynne
674
- [maxmeyer]: https://github.com/maxmeyer
675
- [msassak]: https://github.com/msassak
676
- [mvz]: https://github.com/mvz
677
- [myronmarston]: https://github.com/myronmarston
678
- [njam]: https://github.com/njam
679
- [nruth]: https://github.com/nruth
680
- [olleolleolle]: https://github.com/olleolleolle
681
- [richardxia]: https://github.com/richardxia
682
- [robertwahler]: https://github.com/robertwahler
683
- [roschaefer]: https://github.com/roschaefer
684
- [rspeicher]: https://github.com/rspeicher
685
- [rubbish]: https://github.com/rubbish
686
- [scottj97]: https://github.com/scottj97
687
- [stamhankar999]: https://github.com/stamhankar999
688
- [taylor]: https://github.com/taylor
689
- [tdreyno]: https://github.com/tdreyno
690
- [xtrasimplicity]: https://github.com/xtrasimplicity
691
-
692
- <!-- issues & pull requests -->
693
-
694
- [#677]: https://github.com/cucumber/aruba/pull/677
695
- [#676]: https://github.com/cucumber/aruba/pull/676
696
- [#673]: https://github.com/cucumber/aruba/pull/673
697
- [#668]: https://github.com/cucumber/aruba/pull/668
698
- [#664]: https://github.com/cucumber/aruba/pull/664
699
- [#658]: https://github.com/cucumber/aruba/pull/658
700
- [#650]: https://github.com/cucumber/aruba/pull/650
701
- [#647]: https://github.com/cucumber/aruba/pull/647
702
- [#645]: https://github.com/cucumber/aruba/pull/645
703
- [#642]: https://github.com/cucumber/aruba/pull/642
704
- [#639]: https://github.com/cucumber/aruba/pull/639
705
- [#638]: https://github.com/cucumber/aruba/pull/638
706
- [#622]: https://github.com/cucumber/aruba/pull/622
707
- [#621]: https://github.com/cucumber/aruba/pull/621
708
- [#620]: https://github.com/cucumber/aruba/pull/620
709
- [#612]: https://github.com/cucumber/aruba/pull/612
710
- [#611]: https://github.com/cucumber/aruba/pull/611
711
- [#610]: https://github.com/cucumber/aruba/pull/610
712
- [#604]: https://github.com/cucumber/aruba/pull/604
713
- [#603]: https://github.com/cucumber/aruba/pull/603
714
- [#602]: https://github.com/cucumber/aruba/pull/602
715
- [#601]: https://github.com/cucumber/aruba/pull/601
716
- [#597]: https://github.com/cucumber/aruba/pull/597
717
- [#591]: https://github.com/cucumber/aruba/pull/591
718
- [#588]: https://github.com/cucumber/aruba/pull/588
719
- [#585]: https://github.com/cucumber/aruba/pull/585
720
- [#582]: https://github.com/cucumber/aruba/pull/582
721
- [#572]: https://github.com/cucumber/aruba/pull/572
722
- [#571]: https://github.com/cucumber/aruba/pull/571
723
- [#561]: https://github.com/cucumber/aruba/pull/561
724
- [#557]: https://github.com/cucumber/aruba/pull/557
725
- [#551]: https://github.com/cucumber/aruba/pull/551
726
- [#548]: https://github.com/cucumber/aruba/pull/548
727
- [#546]: https://github.com/cucumber/aruba/pull/546
728
- [#544]: https://github.com/cucumber/aruba/pull/544
729
- [#543]: https://github.com/cucumber/aruba/pull/543
730
- [#542]: https://github.com/cucumber/aruba/pull/542
731
- [#541]: https://github.com/cucumber/aruba/pull/541
732
- [#540]: https://github.com/cucumber/aruba/pull/540
733
- [#537]: https://github.com/cucumber/aruba/pull/537
734
- [#536]: https://github.com/cucumber/aruba/pull/536
735
- [#535]: https://github.com/cucumber/aruba/pull/535
736
- [#532]: https://github.com/cucumber/aruba/pull/532
737
- [#530]: https://github.com/cucumber/aruba/pull/530
738
- [#529]: https://github.com/cucumber/aruba/pull/529
739
- [#528]: https://github.com/cucumber/aruba/pull/528
740
- [#523]: https://github.com/cucumber/aruba/pull/523
741
- [#522]: https://github.com/cucumber/aruba/pull/522
742
- [#520]: https://github.com/cucumber/aruba/pull/520
743
- [#517]: https://github.com/cucumber/aruba/pull/517
744
- [#516]: https://github.com/cucumber/aruba/pull/516
745
- [#515]: https://github.com/cucumber/aruba/pull/515
746
- [#514]: https://github.com/cucumber/aruba/pull/514
747
- [#512]: https://github.com/cucumber/aruba/pull/512
748
- [#511]: https://github.com/cucumber/aruba/pull/511
749
- [#510]: https://github.com/cucumber/aruba/pull/510
750
- [#509]: https://github.com/cucumber/aruba/pull/509
751
- [#508]: https://github.com/cucumber/aruba/pull/508
752
- [#507]: https://github.com/cucumber/aruba/pull/507
753
- [#504]: https://github.com/cucumber/aruba/pull/504
754
- [#498]: https://github.com/cucumber/aruba/pull/498
755
- [#497]: https://github.com/cucumber/aruba/pull/497
756
- [#495]: https://github.com/cucumber/aruba/pull/495
757
- [#494]: https://github.com/cucumber/aruba/pull/494
758
- [#493]: https://github.com/cucumber/aruba/pull/493
759
- [#491]: https://github.com/cucumber/aruba/pull/491
760
- [#490]: https://github.com/cucumber/aruba/pull/490
761
- [#489]: https://github.com/cucumber/aruba/pull/489
762
- [#488]: https://github.com/cucumber/aruba/pull/488
763
- [#487]: https://github.com/cucumber/aruba/pull/487
764
- [#486]: https://github.com/cucumber/aruba/pull/486
765
- [#483]: https://github.com/cucumber/aruba/pull/483
766
- [#482]: https://github.com/cucumber/aruba/pull/482
767
- [#481]: https://github.com/cucumber/aruba/pull/481
768
- [#476]: https://github.com/cucumber/aruba/pull/476
769
- [#475]: https://github.com/cucumber/aruba/pull/475
770
- [#471]: https://github.com/cucumber/aruba/pull/471
771
- [#466]: https://github.com/cucumber/aruba/pull/466
772
- [#464]: https://github.com/cucumber/aruba/pull/464
773
- [#462]: https://github.com/cucumber/aruba/pull/462
774
- [#461]: https://github.com/cucumber/aruba/pull/461
775
- [#460]: https://github.com/cucumber/aruba/pull/460
776
- [#459]: https://github.com/cucumber/aruba/pull/459
777
- [#457]: https://github.com/cucumber/aruba/pull/457
778
- [#456]: https://github.com/cucumber/aruba/pull/456
779
- [#454]: https://github.com/cucumber/aruba/pull/454
780
- [#452]: https://github.com/cucumber/aruba/pull/452
781
- [#451]: https://github.com/cucumber/aruba/issues/451
782
- [#449]: https://github.com/cucumber/aruba/issues/449
783
- [#447]: https://github.com/cucumber/aruba/issues/447
784
- [#445]: https://github.com/cucumber/aruba/issues/445
785
- [#444]: https://github.com/cucumber/aruba/issues/444
786
- [#442]: https://github.com/cucumber/aruba/issues/442
787
- [#439]: https://github.com/cucumber/aruba/issues/439
788
- [#438]: https://github.com/cucumber/aruba/issues/438
789
- [#436]: https://github.com/cucumber/aruba/issues/436
790
- [#433]: https://github.com/cucumber/aruba/issues/433
791
- [#427]: https://github.com/cucumber/aruba/issues/427
792
- [#422]: https://github.com/cucumber/aruba/issues/422
793
- [#398]: https://github.com/cucumber/aruba/issues/398
794
- [#390]: https://github.com/cucumber/aruba/issues/390
795
- [#389]: https://github.com/cucumber/aruba/issues/389
796
- [#388]: https://github.com/cucumber/aruba/issues/388
797
- [#387]: https://github.com/cucumber/aruba/issues/387
798
- [#385]: https://github.com/cucumber/aruba/issues/385
799
- [#382]: https://github.com/cucumber/aruba/issues/382
800
- [#376]: https://github.com/cucumber/aruba/issues/376
801
- [#375]: https://github.com/cucumber/aruba/issues/375
802
- [#372]: https://github.com/cucumber/aruba/issues/372
803
- [#366]: https://github.com/cucumber/aruba/issues/366
804
- [#359]: https://github.com/cucumber/aruba/issues/359
805
- [#358]: https://github.com/cucumber/aruba/issues/358
806
- [#357]: https://github.com/cucumber/aruba/issues/357
807
- [#353]: https://github.com/cucumber/aruba/issues/353
808
- [#352]: https://github.com/cucumber/aruba/issues/352
809
- [#349]: https://github.com/cucumber/aruba/issues/349
810
- [#347]: https://github.com/cucumber/aruba/issues/347
811
- [#342]: https://github.com/cucumber/aruba/issues/342
812
- [#341]: https://github.com/cucumber/aruba/issues/341
813
- [#339]: https://github.com/cucumber/aruba/issues/339
814
- [#338]: https://github.com/cucumber/aruba/issues/338
815
- [#336]: https://github.com/cucumber/aruba/issues/336
816
- [#335]: https://github.com/cucumber/aruba/issues/335
817
- [#323]: https://github.com/cucumber/aruba/issues/323
818
- [#322]: https://github.com/cucumber/aruba/issues/322
819
- [#321]: https://github.com/cucumber/aruba/issues/321
820
- [#320]: https://github.com/cucumber/aruba/issues/320
821
- [#314]: https://github.com/cucumber/aruba/issues/314
822
- [#309]: https://github.com/cucumber/aruba/issues/309
823
- [#308]: https://github.com/cucumber/aruba/issues/308
824
- [#306]: https://github.com/cucumber/aruba/issues/306
825
- [#305]: https://github.com/cucumber/aruba/issues/305
826
- [#304]: https://github.com/cucumber/aruba/issues/304
827
- [#302]: https://github.com/cucumber/aruba/issues/302
828
- [#294]: https://github.com/cucumber/aruba/issues/294
829
- [#292]: https://github.com/cucumber/aruba/issues/292
830
- [#287]: https://github.com/cucumber/aruba/issues/287
831
- [#286]: https://github.com/cucumber/aruba/issues/286
832
- [#282]: https://github.com/cucumber/aruba/issues/282
833
- [#279]: https://github.com/cucumber/aruba/issues/279
834
- [#277]: https://github.com/cucumber/aruba/issues/277
835
- [#271]: https://github.com/cucumber/aruba/issues/271
836
- [#268]: https://github.com/cucumber/aruba/issues/268
837
- [#267]: https://github.com/cucumber/aruba/issues/267
838
- [#260]: https://github.com/cucumber/aruba/issues/260
839
- [#257]: https://github.com/cucumber/aruba/issues/257
840
- [#253]: https://github.com/cucumber/aruba/issues/253
841
- [#250]: https://github.com/cucumber/aruba/issues/250
842
- [#244]: https://github.com/cucumber/aruba/issues/244
843
- [#243]: https://github.com/cucumber/aruba/issues/243
844
- [#240]: https://github.com/cucumber/aruba/issues/240
845
- [#239]: https://github.com/cucumber/aruba/issues/239
846
- [#238]: https://github.com/cucumber/aruba/issues/238
847
- [#234]: https://github.com/cucumber/aruba/issues/234
848
- [#232]: https://github.com/cucumber/aruba/issues/232
849
- [#224]: https://github.com/cucumber/aruba/issues/224
850
- [#223]: https://github.com/cucumber/aruba/issues/223
851
- [#157]: https://github.com/cucumber/aruba/issues/157
852
- [#156]: https://github.com/cucumber/aruba/issues/156
853
- [#154]: https://github.com/cucumber/aruba/issues/154
854
- [#151]: https://github.com/cucumber/aruba/issues/151
855
- [#150]: https://github.com/cucumber/aruba/issues/150
856
- [#148]: https://github.com/cucumber/aruba/issues/148
857
- [#144]: https://github.com/cucumber/aruba/issues/144
858
- [#125]: https://github.com/cucumber/aruba/issues/125
859
- [#124]: https://github.com/cucumber/aruba/issues/124
860
- [#121]: https://github.com/cucumber/aruba/issues/121
861
- [#111]: https://github.com/cucumber/aruba/issues/111
862
- [#110]: https://github.com/cucumber/aruba/issues/110
863
- [#104]: https://github.com/cucumber/aruba/issues/104
864
- [#102]: https://github.com/cucumber/aruba/issues/102
865
- [#101]: https://github.com/cucumber/aruba/issues/101
866
- [#95]: https://github.com/cucumber/aruba/issues/95
867
- [#93]: https://github.com/cucumber/aruba/issues/93
868
- [#91]: https://github.com/cucumber/aruba/issues/91
869
- [#89]: https://github.com/cucumber/aruba/issues/89
870
- [#85]: https://github.com/cucumber/aruba/issues/85
871
- [#71]: https://github.com/cucumber/aruba/issues/71
872
- [#48]: https://github.com/cucumber/aruba/issues/48
873
- [#47]: https://github.com/cucumber/aruba/issues/47
874
- [#44]: https://github.com/cucumber/aruba/issues/44
875
- [#43]: https://github.com/cucumber/aruba/issues/43
876
- [#42]: https://github.com/cucumber/aruba/issues/42
877
- [#40]: https://github.com/cucumber/aruba/issues/40
878
- [#31]: https://github.com/cucumber/aruba/issues/31
879
- [#30]: https://github.com/cucumber/aruba/issues/30
880
- [#27]: https://github.com/cucumber/aruba/issues/27
881
- [#18]: https://github.com/cucumber/aruba/issues/18
882
- [#17]: https://github.com/cucumber/aruba/issues/17
883
- [#16]: https://github.com/cucumber/aruba/issues/16
884
- [#15]: https://github.com/cucumber/aruba/issues/15
885
- [#13]: https://github.com/cucumber/aruba/issues/13
886
- [#9]: https://github.com/cucumber/aruba/issues/9
887
- [#7]: https://github.com/cucumber/aruba/issues/7
888
- [#5]: https://github.com/cucumber/aruba/issues/5
889
- [#4]: https://github.com/cucumber/aruba/issues/4
890
- [#1]: https://github.com/cucumber/aruba/issues/1
891
-
892
- [cucumber/cucumber#521]: https://github.com/cucumber/cucumber/issues/521
893
- [jruby/jruby#316]: https://github.com/jruby/jruby/issues/316
894
-
895
- <!-- Releases -->
896
-
897
- [0.14.14]: https://github.com/cucumber/aruba/compare/v0.14.13...v0.14.14
898
- [0.14.13]: https://github.com/cucumber/aruba/compare/v0.14.12...v0.14.13
899
- [0.14.12]: https://github.com/cucumber/aruba/compare/v0.14.11...v0.14.12
900
- [0.14.11]: https://github.com/cucumber/aruba/compare/v0.14.10...v0.14.11
901
- [0.14.10]: https://github.com/cucumber/aruba/compare/v0.14.9...v0.14.10
902
- [0.14.9]: https://github.com/cucumber/aruba/compare/v0.14.8...v0.14.9
903
- [0.14.8]: https://github.com/cucumber/aruba/compare/v0.14.7...v0.14.8
904
- [0.14.7]: https://github.com/cucumber/aruba/compare/v0.14.6...v0.14.7
905
- [0.14.6]: https://github.com/cucumber/aruba/compare/v0.14.5...v0.14.6
906
- [0.14.5]: https://github.com/cucumber/aruba/compare/v0.14.4...v0.14.5
907
- [0.14.4]: https://github.com/cucumber/aruba/compare/v0.14.3...v0.14.4
908
- [0.14.3]: https://github.com/cucumber/aruba/compare/v0.14.2...v0.14.3
909
- [0.14.2]: https://github.com/cucumber/aruba/compare/v0.14.1...v0.14.2
910
- [0.14.1]: https://github.com/cucumber/aruba/compare/v0.14.0...v0.14.1
911
- [0.14.0]: https://github.com/cucumber/aruba/compare/v0.13.0...v0.14.0
912
- [0.13.0]: https://github.com/cucumber/aruba/compare/v0.12.0...v0.13.0
913
- [0.12.0]: https://github.com/cucumber/aruba/compare/v0.11.2...v0.12.0
914
- [0.11.2]: https://github.com/cucumber/aruba/compare/v0.11.1...v0.11.2
915
- [0.11.1]: https://github.com/cucumber/aruba/compare/v0.11.0...v0.11.1
916
- [0.11.0]: https://github.com/cucumber/aruba/compare/v0.11.0.pre4...v0.11.0
917
- [0.11.0.pre4]: https://github.com/cucumber/aruba/compare/v0.11.0.pre3...v0.11.0.pre4
918
- [0.11.0.pre3]: https://github.com/cucumber/aruba/compare/v0.11.0.pre2...v0.11.0.pre3
919
- [0.11.0.pre2]: https://github.com/cucumber/aruba/compare/v0.11.0.pre...v0.11.0.pre2
920
- [0.11.0.pre]: https://github.com/cucumber/aruba/compare/v0.10.2...v0.11.0.pre
921
- [0.10.2]: https://github.com/cucumber/aruba/compare/v0.10.1...v0.10.2
922
- [0.10.1]: https://github.com/cucumber/aruba/compare/v0.10.0...v0.10.1
923
- [0.10.0]: https://github.com/cucumber/aruba/compare/v0.10.0.pre2...v0.10.0
924
- [0.10.0.pre2]: https://github.com/cucumber/aruba/compare/v0.10.0.pre...v0.10.0.pre2
925
- [0.10.0.pre]: https://github.com/cucumber/aruba/compare/v0.9.0...v0.10.0
926
- [0.9.0]: https://github.com/cucumber/aruba/compare/v0.9.0.pre2...v0.9.0
927
- [0.9.0.pre2]: https://github.com/cucumber/aruba/compare/v0.9.0.pre...v0.9.0.pre2
928
- [0.9.0.pre]: https://github.com/cucumber/aruba/compare/v0.8.1...v0.9.0.pre
929
- [0.8.1]: https://github.com/cucumber/aruba/compare/v0.8.0...v0.8.1
930
- [0.8.0]: https://github.com/cucumber/aruba/compare/v0.8.0.pre3...v0.8.0
931
- [0.8.0.pre3]: https://github.com/cucumber/aruba/compare/v0.8.0.pre2...v0.8.0.pre3
932
- [0.8.0.pre2]: https://github.com/cucumber/aruba/compare/v0.8.0...v0.8.0.pre2
933
- [0.8.0.pre]: https://github.com/cucumber/aruba/compare/v0.7.4...v0.8.0.pre
934
- [0.7.4]: https://github.com/cucumber/aruba/compare/v0.7.2...v0.7.4
935
- [0.7.3]: https://github.com/cucumber/aruba/compare/v0.7.2...v0.7.3
936
- [0.7.2]: https://github.com/cucumber/aruba/compare/v0.7.1...v0.7.2
937
- [0.7.1]: https://github.com/cucumber/aruba/compare/v0.7.0...v0.7.1
938
- [0.7.0]: https://github.com/cucumber/aruba/compare/v0.6.2...v0.7.0
939
- [0.6.2]: https://github.com/cucumber/aruba/compare/v0.6.1...v0.6.2
940
- [0.6.1]: https://github.com/cucumber/aruba/compare/v0.6.0...v0.6.1
941
- [0.6.0]: https://github.com/cucumber/aruba/compare/v0.5.4...v0.6.0
942
- [0.5.4]: https://github.com/cucumber/aruba/compare/v0.5.3...v0.5.4
943
- [0.5.3]: https://github.com/cucumber/aruba/compare/v0.5.2...v0.5.3
944
- [0.5.2]: https://github.com/cucumber/aruba/compare/v0.5.1...v0.5.2
945
- [0.5.1]: https://github.com/cucumber/aruba/compare/v0.5.0...v0.5.1
946
- [0.5.0]: https://github.com/cucumber/aruba/compare/v0.4.10...v0.5.0
947
- [0.4.11]: https://github.com/cucumber/aruba/compare/v0.4.10...v0.4.11
948
- [0.4.10]: https://github.com/cucumber/aruba/compare/v0.4.9...v0.4.10
949
- [0.4.9]: https://github.com/cucumber/aruba/compare/v0.4.8...v0.4.9
950
- [0.4.8]: https://github.com/cucumber/aruba/compare/v0.4.7...v0.4.8
951
- [0.4.7]: https://github.com/cucumber/aruba/compare/v0.4.6...v0.4.7
952
- [0.4.6]: https://github.com/cucumber/aruba/compare/v0.4.5...v0.4.6
953
- [0.4.5]: https://github.com/cucumber/aruba/compare/v0.4.4...v0.4.5
954
- [0.4.4]: https://github.com/cucumber/aruba/compare/v0.4.3...v0.4.4
955
- [0.4.3]: https://github.com/cucumber/aruba/compare/v0.4.2...v0.4.3
956
- [0.4.2]: https://github.com/cucumber/aruba/compare/v0.4.1...v0.4.2
957
- [0.4.1]: https://github.com/cucumber/aruba/compare/v0.4.0...v0.4.1
958
- [0.4.0]: https://github.com/cucumber/aruba/compare/v0.3.7...v0.4.0
959
- [0.3.7]: https://github.com/cucumber/aruba/compare/v0.3.6...v0.3.7
960
- [0.3.6]: https://github.com/cucumber/aruba/compare/v0.3.5...v0.3.6
961
- [0.3.5]: https://github.com/cucumber/aruba/compare/v0.3.4...v0.3.5
962
- [0.3.4]: https://github.com/cucumber/aruba/compare/v0.3.3...v0.3.4
963
- [0.3.3]: https://github.com/cucumber/aruba/compare/v0.3.2...v0.3.3
964
- [0.3.2]: https://github.com/cucumber/aruba/compare/v0.3.1...v0.3.2
965
- [0.3.1]: https://github.com/cucumber/aruba/compare/v0.3.0...v0.3.1
966
- [0.3.0]: https://github.com/cucumber/aruba/compare/v0.2.8...v0.3.0
967
- [0.2.8]: https://github.com/cucumber/aruba/compare/v0.2.7...v0.2.8
968
- [0.2.7]: https://github.com/cucumber/aruba/compare/v0.2.6...v0.2.7
969
- [0.2.6]: https://github.com/cucumber/aruba/compare/v0.2.5...v0.2.6
970
- [0.2.5]: https://github.com/cucumber/aruba/compare/v0.2.4...v0.2.5
971
- [0.2.4]: https://github.com/cucumber/aruba/compare/v0.2.3...v0.2.4
972
- [0.2.3]: https://github.com/cucumber/aruba/compare/v0.2.2...v0.2.3
973
- [0.2.2]: https://github.com/cucumber/aruba/compare/v0.2.1...v0.2.2
974
- [0.2.1]: https://github.com/cucumber/aruba/compare/v0.2.0...v0.2.1
975
- [0.2.0]: https://github.com/cucumber/aruba/compare/v0.1.9...v0.2.0
976
- [0.1.9]: https://github.com/cucumber/aruba/compare/v0.1.8...v0.1.9
977
- [0.1.8]: https://github.com/cucumber/aruba/compare/v0.1.7...v0.1.8
978
- [0.1.7]: https://github.com/cucumber/aruba/compare/v0.1.6...v0.1.7
979
- [0.1.6]: https://github.com/cucumber/aruba/compare/v0.1.5...v0.1.6
980
- [0.1.5]: https://github.com/cucumber/aruba/compare/v0.1.4...v0.1.5
981
- [0.1.4]: https://github.com/cucumber/aruba/compare/v0.1.3...v0.1.4
982
- [0.1.3]: https://github.com/cucumber/aruba/compare/v0.1.2...v0.1.3
983
- [0.1.2]: https://github.com/cucumber/aruba/compare/v0.1.1...v0.1.2
984
- [0.1.1]: https://github.com/cucumber/aruba/compare/v0.1.0...v0.1.1
985
- [0.1.0]: https://github.com/cucumber/aruba/compare/ed6a175d23aaff62dbf355706996f276f304ae8b...v0.1.1
986
-
987
- <!-- Other links -->
988
-
989
- [1]: http://semver.org
990
- [2]: http://keepachangelog.com
991
- [3]: https://github.com/cucumber/aruba/blob/master/CONTRIBUTING.md