aruba-win-fix 0.14.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (324) hide show
  1. checksums.yaml +7 -0
  2. data/.document +5 -0
  3. data/.gitignore +37 -0
  4. data/.rspec +3 -0
  5. data/.rubocop.yml +188 -0
  6. data/.simplecov +34 -0
  7. data/.travis.yml +47 -0
  8. data/.yardopts +8 -0
  9. data/CONTRIBUTING.md +71 -0
  10. data/Gemfile +83 -0
  11. data/History.md +579 -0
  12. data/LICENSE +20 -0
  13. data/README.md +226 -0
  14. data/Rakefile +49 -0
  15. data/TODO.md +13 -0
  16. data/appveyor.yml +32 -0
  17. data/aruba.gemspec +48 -0
  18. data/bin/aruba +7 -0
  19. data/config/.gitignore +1 -0
  20. data/cucumber.yml +26 -0
  21. data/features/.nav +72 -0
  22. data/features/api/command/find_command.feature +83 -0
  23. data/features/api/command/last_command_started.feature +50 -0
  24. data/features/api/command/last_command_stopped.feature +89 -0
  25. data/features/api/command/run.feature +414 -0
  26. data/features/api/command/run_simple.feature +242 -0
  27. data/features/api/command/send_signal.feature +53 -0
  28. data/features/api/command/stderr.feature +46 -0
  29. data/features/api/command/stdout.feature +46 -0
  30. data/features/api/command/stop.feature +131 -0
  31. data/features/api/command/stop_all_commands.feature +53 -0
  32. data/features/api/command/terminate_all_commands.feature +53 -0
  33. data/features/api/command/which.feature +37 -0
  34. data/features/api/core/expand_path.feature +88 -0
  35. data/features/api/environment/append_environment_variable.feature +128 -0
  36. data/features/api/environment/delete_environment_variable.feature +63 -0
  37. data/features/api/environment/prepend_environment_variable.feature +128 -0
  38. data/features/api/environment/set_environment_variable.feature +376 -0
  39. data/features/api/filesystem/cd.feature +184 -0
  40. data/features/api/filesystem/create_directory.feature +57 -0
  41. data/features/api/filesystem/disk_usage.feature +152 -0
  42. data/features/api/filesystem/does_exist.feature +62 -0
  43. data/features/api/filesystem/fixtures.feature +104 -0
  44. data/features/api/filesystem/is_absolute.feature +48 -0
  45. data/features/api/filesystem/is_directory.feature +53 -0
  46. data/features/api/filesystem/is_file.feature +54 -0
  47. data/features/api/filesystem/is_relative.feature +48 -0
  48. data/features/api/filesystem/move.feature +119 -0
  49. data/features/api/text/extract_text.feature +87 -0
  50. data/features/api/text/replace_variables.feature +45 -0
  51. data/features/api/text/sanitize_text.feature +228 -0
  52. data/features/api/text/unescape_text.feature +127 -0
  53. data/features/cli/console.feature +52 -0
  54. data/features/cli/init.feature +79 -0
  55. data/features/configuration/activate_announcer_on_command_failure.feature +38 -0
  56. data/features/configuration/command_runtime_environment.feature +129 -0
  57. data/features/configuration/console_history_file.feature +38 -0
  58. data/features/configuration/exit_timeout.feature +52 -0
  59. data/features/configuration/fixtures_directories.feature +38 -0
  60. data/features/configuration/fixtures_path_prefix.feature +23 -0
  61. data/features/configuration/home_directory.feature +80 -0
  62. data/features/configuration/io_timeout.feature +30 -0
  63. data/features/configuration/keep_ansi.feature +30 -0
  64. data/features/configuration/log_level.feature +38 -0
  65. data/features/configuration/physical_block_size.feature +53 -0
  66. data/features/configuration/remove_ansi_escape_sequences.feature +38 -0
  67. data/features/configuration/root_directory.feature +30 -0
  68. data/features/configuration/startup_wait_time.feature +48 -0
  69. data/features/configuration/usage.feature +159 -0
  70. data/features/configuration/working_directory.feature +33 -0
  71. data/features/development/build.feature +15 -0
  72. data/features/development/test.feature +24 -0
  73. data/features/getting_started/cleanup.feature +67 -0
  74. data/features/getting_started/install.feature +8 -0
  75. data/features/getting_started/run_commands.feature +177 -0
  76. data/features/getting_started/supported_testing_frameworks.feature +104 -0
  77. data/features/getting_started/writing_good_feature_tests.feature +38 -0
  78. data/features/hooks/after/command.feature +44 -0
  79. data/features/hooks/before/command.feature +71 -0
  80. data/features/matchers/collection/include_an_object.feature +72 -0
  81. data/features/matchers/directory/have_sub_directory.feature +110 -0
  82. data/features/matchers/file/be_a_command_found_in_path.feature +115 -0
  83. data/features/matchers/file/be_existing_executable.feature +88 -0
  84. data/features/matchers/file/be_existing_file.feature +82 -0
  85. data/features/matchers/file/have_file_content.feature +123 -0
  86. data/features/matchers/file/have_file_size.feature +107 -0
  87. data/features/matchers/path/be_an_absolute_path.feature +74 -0
  88. data/features/matchers/path/be_an_existing_path.feature +97 -0
  89. data/features/matchers/path/have_permissions.feature +118 -0
  90. data/features/matchers/timeouts.feature +48 -0
  91. data/features/platforms/jruby.feature +14 -0
  92. data/features/rspec/integration.feature +179 -0
  93. data/features/step_definitions/aruba_dev_steps.rb +56 -0
  94. data/features/step_definitions/hooks.rb +96 -0
  95. data/features/steps/command/debug.feature +92 -0
  96. data/features/steps/command/exit_statuses.feature +136 -0
  97. data/features/steps/command/in_process.feature +485 -0
  98. data/features/steps/command/interactive.feature +90 -0
  99. data/features/steps/command/output.feature +588 -0
  100. data/features/steps/command/run.feature +66 -0
  101. data/features/steps/command/send_signal.feature +104 -0
  102. data/features/steps/command/shell.feature +155 -0
  103. data/features/steps/command/stderr.feature +68 -0
  104. data/features/steps/command/stdout.feature +109 -0
  105. data/features/steps/command/stop.feature +313 -0
  106. data/features/steps/core/announce.feature +283 -0
  107. data/features/steps/environment/append_environment_variable.feature +52 -0
  108. data/features/steps/environment/home_variable.feature +62 -0
  109. data/features/steps/environment/prepend_environment_variable.feature +52 -0
  110. data/features/steps/environment/set_environment_variable.feature +49 -0
  111. data/features/steps/filesystem/append_to_file.feature +45 -0
  112. data/features/steps/filesystem/cd_to_directory.feature +33 -0
  113. data/features/steps/filesystem/check_file_content.feature +61 -0
  114. data/features/steps/filesystem/check_permissions_of_file.feature +39 -0
  115. data/features/steps/filesystem/compare_files.feature +42 -0
  116. data/features/steps/filesystem/copy.feature +45 -0
  117. data/features/steps/filesystem/create_directory.feature +57 -0
  118. data/features/steps/filesystem/create_file.feature +76 -0
  119. data/features/steps/filesystem/existence_of_directory.feature +57 -0
  120. data/features/steps/filesystem/existence_of_file.feature +43 -0
  121. data/features/steps/filesystem/file_content.feature +86 -0
  122. data/features/steps/filesystem/fixtures.feature +64 -0
  123. data/features/steps/filesystem/move.feature +45 -0
  124. data/features/steps/filesystem/non_existence_of_directory.feature +69 -0
  125. data/features/steps/filesystem/non_existence_of_file.feature +80 -0
  126. data/features/steps/filesystem/overwrite_file.feature +72 -0
  127. data/features/steps/filesystem/remove_directory.feature +38 -0
  128. data/features/steps/filesystem/remove_file.feature +38 -0
  129. data/features/steps/filesystem/use_fixture.feature +77 -0
  130. data/features/steps/overview.feature +60 -0
  131. data/features/support/aruba.rb +7 -0
  132. data/features/support/env.rb +33 -0
  133. data/features/support/jruby.rb +5 -0
  134. data/features/support/simplecov_setup.rb +8 -0
  135. data/fixtures/cli-app/.gitignore +9 -0
  136. data/fixtures/cli-app/.rspec +2 -0
  137. data/fixtures/cli-app/README.md +39 -0
  138. data/fixtures/cli-app/Rakefile +1 -0
  139. data/fixtures/cli-app/bin/cli +6 -0
  140. data/fixtures/cli-app/cli-app.gemspec +26 -0
  141. data/fixtures/cli-app/features/support/env.rb +1 -0
  142. data/fixtures/cli-app/lib/cli/app.rb +13 -0
  143. data/fixtures/cli-app/lib/cli/app/suppress_simple_cov_output.rb +15 -0
  144. data/fixtures/cli-app/lib/cli/app/version.rb +5 -0
  145. data/fixtures/cli-app/script/console +14 -0
  146. data/fixtures/cli-app/spec/spec_helper.rb +9 -0
  147. data/fixtures/cli-app/spec/support/aruba.rb +1 -0
  148. data/fixtures/copy/file.txt +1 -0
  149. data/fixtures/empty-app/.gitignore +9 -0
  150. data/fixtures/empty-app/.rspec +2 -0
  151. data/fixtures/empty-app/README.md +24 -0
  152. data/fixtures/empty-app/Rakefile +1 -0
  153. data/fixtures/empty-app/cli-app.gemspec +26 -0
  154. data/fixtures/empty-app/lib/cli/app.rb +13 -0
  155. data/fixtures/empty-app/lib/cli/app/version.rb +5 -0
  156. data/fixtures/getting-started-app/.gitignore +4 -0
  157. data/fixtures/getting-started-app/Gemfile +4 -0
  158. data/fixtures/getting-started-app/README.md +3 -0
  159. data/fixtures/getting-started-app/features/support/env.rb +1 -0
  160. data/fixtures/spawn_process/stderr.sh +3 -0
  161. data/lib/aruba.rb +1 -0
  162. data/lib/aruba/api.rb +34 -0
  163. data/lib/aruba/api/command.rb +307 -0
  164. data/lib/aruba/api/core.rb +191 -0
  165. data/lib/aruba/api/deprecated.rb +897 -0
  166. data/lib/aruba/api/environment.rb +89 -0
  167. data/lib/aruba/api/filesystem.rb +392 -0
  168. data/lib/aruba/api/rvm.rb +44 -0
  169. data/lib/aruba/api/text.rb +56 -0
  170. data/lib/aruba/aruba_path.rb +133 -0
  171. data/lib/aruba/basic_configuration.rb +240 -0
  172. data/lib/aruba/basic_configuration/option.rb +32 -0
  173. data/lib/aruba/cli.rb +26 -0
  174. data/lib/aruba/colorizer.rb +108 -0
  175. data/lib/aruba/command.rb +74 -0
  176. data/lib/aruba/config.rb +108 -0
  177. data/lib/aruba/config/jruby.rb +17 -0
  178. data/lib/aruba/config_wrapper.rb +58 -0
  179. data/lib/aruba/console.rb +70 -0
  180. data/lib/aruba/console/help.rb +35 -0
  181. data/lib/aruba/contracts/absolute_path.rb +20 -0
  182. data/lib/aruba/contracts/enum.rb +26 -0
  183. data/lib/aruba/contracts/is_power_of_two.rb +22 -0
  184. data/lib/aruba/contracts/relative_path.rb +20 -0
  185. data/lib/aruba/cucumber.rb +13 -0
  186. data/lib/aruba/cucumber/command.rb +422 -0
  187. data/lib/aruba/cucumber/core.rb +5 -0
  188. data/lib/aruba/cucumber/environment.rb +42 -0
  189. data/lib/aruba/cucumber/file.rb +201 -0
  190. data/lib/aruba/cucumber/hooks.rb +160 -0
  191. data/lib/aruba/cucumber/rvm.rb +3 -0
  192. data/lib/aruba/cucumber/testing_frameworks.rb +95 -0
  193. data/lib/aruba/errors.rb +37 -0
  194. data/lib/aruba/event_bus.rb +59 -0
  195. data/lib/aruba/event_bus/name_resolver.rb +168 -0
  196. data/lib/aruba/events.rb +39 -0
  197. data/lib/aruba/extensions/string/strip.rb +25 -0
  198. data/lib/aruba/file_size.rb +63 -0
  199. data/lib/aruba/generators/script_file.rb +46 -0
  200. data/lib/aruba/hooks.rb +56 -0
  201. data/lib/aruba/in_config_wrapper.rb +24 -0
  202. data/lib/aruba/in_process.rb +14 -0
  203. data/lib/aruba/initializer.rb +222 -0
  204. data/lib/aruba/jruby.rb +4 -0
  205. data/lib/aruba/matchers/base/base_matcher.rb +96 -0
  206. data/lib/aruba/matchers/base/object_formatter.rb +114 -0
  207. data/lib/aruba/matchers/collection.rb +1 -0
  208. data/lib/aruba/matchers/collection/all.rb +11 -0
  209. data/lib/aruba/matchers/collection/include_an_object.rb +122 -0
  210. data/lib/aruba/matchers/command.rb +1 -0
  211. data/lib/aruba/matchers/command/be_successfully_executed.rb +34 -0
  212. data/lib/aruba/matchers/command/have_exit_status.rb +38 -0
  213. data/lib/aruba/matchers/command/have_finished_in_time.rb +37 -0
  214. data/lib/aruba/matchers/command/have_output.rb +36 -0
  215. data/lib/aruba/matchers/command/have_output_on_stderr.rb +32 -0
  216. data/lib/aruba/matchers/command/have_output_on_stdout.rb +32 -0
  217. data/lib/aruba/matchers/command/have_output_size.rb +28 -0
  218. data/lib/aruba/matchers/directory.rb +1 -0
  219. data/lib/aruba/matchers/directory/be_an_existing_directory.rb +38 -0
  220. data/lib/aruba/matchers/directory/have_sub_directory.rb +53 -0
  221. data/lib/aruba/matchers/environment.rb +1 -0
  222. data/lib/aruba/matchers/file.rb +1 -0
  223. data/lib/aruba/matchers/file/be_a_command_found_in_path.rb +36 -0
  224. data/lib/aruba/matchers/file/be_an_existing_executable.rb +37 -0
  225. data/lib/aruba/matchers/file/be_an_existing_file.rb +38 -0
  226. data/lib/aruba/matchers/file/have_file_content.rb +62 -0
  227. data/lib/aruba/matchers/file/have_file_size.rb +47 -0
  228. data/lib/aruba/matchers/file/have_same_file_content.rb +48 -0
  229. data/lib/aruba/matchers/path.rb +1 -0
  230. data/lib/aruba/matchers/path/a_path_matching_pattern.rb +25 -0
  231. data/lib/aruba/matchers/path/be_an_absolute_path.rb +36 -0
  232. data/lib/aruba/matchers/path/be_an_existing_path.rb +37 -0
  233. data/lib/aruba/matchers/path/have_permissions.rb +64 -0
  234. data/lib/aruba/matchers/path/match_path_pattern.rb +41 -0
  235. data/lib/aruba/matchers/rspec_matcher_include_regexp.rb +25 -0
  236. data/lib/aruba/matchers/string.rb +1 -0
  237. data/lib/aruba/matchers/string/include_output_string.rb +36 -0
  238. data/lib/aruba/matchers/string/match_output_string.rb +37 -0
  239. data/lib/aruba/matchers/string/output_string_eq.rb +35 -0
  240. data/lib/aruba/platform.rb +25 -0
  241. data/lib/aruba/platforms/announcer.rb +232 -0
  242. data/lib/aruba/platforms/aruba_file_creator.rb +35 -0
  243. data/lib/aruba/platforms/aruba_fixed_size_file_creator.rb +35 -0
  244. data/lib/aruba/platforms/aruba_logger.rb +81 -0
  245. data/lib/aruba/platforms/command_monitor.rb +229 -0
  246. data/lib/aruba/platforms/determine_disk_usage.rb +28 -0
  247. data/lib/aruba/platforms/determine_file_size.rb +22 -0
  248. data/lib/aruba/platforms/disk_usage_calculator.rb +20 -0
  249. data/lib/aruba/platforms/filesystem_status.rb +68 -0
  250. data/lib/aruba/platforms/local_environment.rb +29 -0
  251. data/lib/aruba/platforms/simple_table.rb +54 -0
  252. data/lib/aruba/platforms/unix_command_string.rb +27 -0
  253. data/lib/aruba/platforms/unix_environment_variables.rb +220 -0
  254. data/lib/aruba/platforms/unix_platform.rb +276 -0
  255. data/lib/aruba/platforms/unix_which.rb +85 -0
  256. data/lib/aruba/platforms/windows_command_string.rb +31 -0
  257. data/lib/aruba/platforms/windows_environment_variables.rb +89 -0
  258. data/lib/aruba/platforms/windows_platform.rb +42 -0
  259. data/lib/aruba/platforms/windows_which.rb +106 -0
  260. data/lib/aruba/processes/basic_process.rb +143 -0
  261. data/lib/aruba/processes/debug_process.rb +69 -0
  262. data/lib/aruba/processes/in_process.rb +125 -0
  263. data/lib/aruba/processes/spawn_process.rb +278 -0
  264. data/lib/aruba/reporting.rb +126 -0
  265. data/lib/aruba/rspec.rb +107 -0
  266. data/lib/aruba/runtime.rb +96 -0
  267. data/lib/aruba/setup.rb +90 -0
  268. data/lib/aruba/spawn_process.rb +11 -0
  269. data/lib/aruba/version.rb +3 -0
  270. data/script/bootstrap +28 -0
  271. data/script/console +16 -0
  272. data/script/test +3 -0
  273. data/spec/aruba/api/environment/restore_env_spec.rb +65 -0
  274. data/spec/aruba/api/environment/set_env_spec.rb +42 -0
  275. data/spec/aruba/api/filesystem/file_size_spec.rb +28 -0
  276. data/spec/aruba/api/runtime_spec.rb +28 -0
  277. data/spec/aruba/api_spec.rb +1209 -0
  278. data/spec/aruba/aruba_path_spec.rb +103 -0
  279. data/spec/aruba/basic_configuration_spec.rb +5 -0
  280. data/spec/aruba/configuration_spec.rb +5 -0
  281. data/spec/aruba/hooks_spec.rb +17 -0
  282. data/spec/aruba/in_config_wrapper_spec.rb +25 -0
  283. data/spec/aruba/jruby_spec.rb +55 -0
  284. data/spec/aruba/matchers/command/have_output_size_spec.rb +25 -0
  285. data/spec/aruba/matchers/command_spec.rb +174 -0
  286. data/spec/aruba/matchers/directory_spec.rb +57 -0
  287. data/spec/aruba/matchers/file_spec.rb +127 -0
  288. data/spec/aruba/matchers/path_spec.rb +88 -0
  289. data/spec/aruba/platform/simple_table_spec.rb +23 -0
  290. data/spec/aruba/platform/windows_environment_variables_spec.rb +500 -0
  291. data/spec/aruba/rspec_spec.rb +15 -0
  292. data/spec/aruba/runtime_spec.rb +29 -0
  293. data/spec/aruba/spawn_process_spec.rb +60 -0
  294. data/spec/event_bus/name_resolver_spec.rb +68 -0
  295. data/spec/event_bus_spec.rb +160 -0
  296. data/spec/spec_helper.rb +23 -0
  297. data/spec/support/configs/.keep +0 -0
  298. data/spec/support/configs/aruba.rb +5 -0
  299. data/spec/support/configs/pry.rb +3 -0
  300. data/spec/support/configs/rspec.rb +15 -0
  301. data/spec/support/helpers/.keep +0 -0
  302. data/spec/support/helpers/reporting.rb +44 -0
  303. data/spec/support/matchers/.keep +0 -0
  304. data/spec/support/matchers/option.rb +35 -0
  305. data/spec/support/shared_contexts/.keep +0 -0
  306. data/spec/support/shared_contexts/aruba.rb +48 -0
  307. data/spec/support/shared_examples/.keep +0 -0
  308. data/spec/support/shared_examples/configuration.rb +116 -0
  309. data/spec/support/shared_examples/directory.rb +7 -0
  310. data/spec/support/shared_examples/file.rb +7 -0
  311. data/templates/css/console.css +24 -0
  312. data/templates/css/filesystem.css +42 -0
  313. data/templates/css/pygments-autumn.css +59 -0
  314. data/templates/files.erb +14 -0
  315. data/templates/images/LICENSE +22 -0
  316. data/templates/images/folder.png +0 -0
  317. data/templates/images/page_white.png +0 -0
  318. data/templates/images/page_white_gherkin.png +0 -0
  319. data/templates/images/page_white_ruby.png +0 -0
  320. data/templates/index.erb +20 -0
  321. data/templates/js/filesystem.js +5 -0
  322. data/templates/js/jquery-1.11.3.min.js +5 -0
  323. data/templates/main.erb +34 -0
  324. metadata +629 -0
@@ -0,0 +1,579 @@
1
+ # UNRELEASED
2
+
3
+ ## [v1.0.0](https://github.com/cucumber/aruba/compare/v0.11.0...v1.0.0)
4
+
5
+ * Support for rubies older than 1.9.3 is discontinued - e.g 1.8.7 and 1.9.2
6
+ * aruba requires "cucumber 2" for the feature steps. The rest of aruba should
7
+ be usable by whatever testing framework you are using.
8
+ * Overwriting methods for configuration is discontinued. You need to use
9
+ `aruba.config.<variable>` or `Aruba.configure { |config| config.<variable>`
10
+ instead.
11
+ * "aruba/reporting" will be removed. Please use `@debug`-tag + `byebug`,
12
+ `debugger`, `pry` to troubleshoot your feature tests.
13
+ * Set environment variables will have only effect on `#run` and the like +
14
+ `#with_environment { }`.
15
+ * The process environment will be fully resetted between tests. Sharing state
16
+ via ENV['VAR'] = 'shared state' between tests will not be possible anymore.
17
+ Please make that obvious by using explicit steps or use the aruba API for
18
+ that.
19
+ * There will be a major cleanup for command execution. There will be only
20
+ `run` and `run_simple` left. `run_interactive` is replaced by `run`.
21
+ * Setting the root directory of aruba via method overwrite or configuration -
22
+ this should be your project root directory where the test suite is run.
23
+ * The direct use of "InProcess", "DebugProcess" and "SpawnProcess" is not
24
+ supported anymore. You need to use "Command" instead. But be careful, it has
25
+ a different API.
26
+ * HOME can be configured via `Aruba.configure {}` and defaults to
27
+ `File.join(aruba.config.root_directory, aruba.config.working_directory?)`
28
+ if `aruba/cucumber` or `aruba/rspec` is used.
29
+ * Use different working directories based on test suite - RSpec, Cucumber.
30
+ It's `tmp/rspec` and `tmp/cucumber` now to make sure they do not overwrite
31
+ the test results from each other.
32
+ * The use of `@interactive` is discontinued. You need to use
33
+ `#last_command_started`-method to get access to the interactively started
34
+ command.
35
+ * If multiple commands have been started, each output has to be check
36
+ separately
37
+
38
+ ```cucumber
39
+ Scenario: Detect stdout from all processes
40
+ When I run `printf "hello world!\n"`
41
+ And I run `cat` interactively
42
+ And I type "hola"
43
+ And I type ""
44
+ Then the stdout should contain:
45
+ """
46
+ hello world!
47
+ """
48
+ And the stdout should contain:
49
+ """
50
+ hola
51
+ """
52
+ And the stderr should not contain anything
53
+ ```
54
+
55
+ # RELEASED
56
+
57
+ ## [v0.14.1](https://github.com/cucumber/aruba/compare/v0.14.0...v0.14.1)
58
+
59
+ * Fixed bug in framework step
60
+
61
+ ## [v0.14.0](https://github.com/cucumber/aruba/compare/v0.13.0...v0.14.0)
62
+
63
+ * Add `<project_root>/exe` to search path for commands: This is the new default if you setup a
64
+ project with bundler.
65
+ * Add some more steps to modify environment
66
+
67
+ ## [v0.13.0](https://github.com/cucumber/aruba/compare/v0.12.0...v0.13.0)
68
+
69
+ * Add two new hooks for rspec and cucumber to make troubleshooting feature
70
+ files easier (PR #338):
71
+ * command_content: Outputs command content - helpful for scripts
72
+ * command_filesystem_status: Outputs information like group, owner, mode,
73
+ atime, mtime
74
+ * Add generator to create ad hoc script file (PR #323, @AdrieanKhisbe)
75
+ * Colored announcer output similar to the color of `cucumber` tags: cyan
76
+ * Fixed bug in announcer. It announces infomation several times due to
77
+ duplicate announce-calls.
78
+ * Refactorings to internal `#simple_table`-method (internal)
79
+ * Refactored Announcer, now it supports blocks for announce as well (internal)
80
+ * Fix circular require warnings (issue #339)
81
+ * Fix use of old instances variable "@io_wait" (issue #341). Now the
82
+ default value for io_wait_timeout can be set correctly.
83
+ * Make it possible to announce information on command error, using a new option
84
+ called `activate_announcer_on_command_failure` (PR #335, @njam)
85
+ * Re-integrate `event-bus`-library into `aruba`-core (PR #342)
86
+
87
+ ## [v0.12.0](https://github.com/cucumber/aruba/compare/v0.11.2...v0.12.0)
88
+
89
+ * Add matcher to check if a command can be found in PATH (PR #336)
90
+ * Fixed issue with environment variables set by external libraries (fix #321,
91
+ issue #320)
92
+
93
+ # Old releases
94
+
95
+ ## [v0.11.2](https://github.com/cucumber/aruba/compare/v0.11.1...v0.11.2)
96
+
97
+ * Fixed problem with positional arguments in `#run_simple()` (issue #322)
98
+
99
+
100
+ ## [v0.11.1](https://github.com/cucumber/aruba/compare/v0.11.0...v0.11.1)
101
+
102
+ * Use fixed version of event-bus
103
+ * Refactored and improved documentation (feature tests) in PR #309
104
+
105
+ ## [v0.11.0](https://github.com/cucumber/aruba/compare/v0.11.0.pre4...v0.11.0)
106
+
107
+ * Accidently pushed to rubygems.org - yanked it afterwards
108
+
109
+ ## [v0.11.0.pre4](https://github.com/cucumber/aruba/compare/v0.11.0.pre3...v0.11.0.pre4)
110
+
111
+ * Fixed syntax for Hash on ruby 1.8.7
112
+ * Reorder rubies in .travis.yml
113
+
114
+ ## [v0.11.0.pre3](https://github.com/cucumber/aruba/compare/v0.11.0.pre2...v0.11.0.pre3)
115
+
116
+ * Fixed syntax for proc on ruby 1.8.7
117
+
118
+ ## [v0.11.0.pre2](https://github.com/cucumber/aruba/compare/v0.11.0.pre...v0.11.0.pre2)
119
+
120
+ * Integrate `EventBus` to decouple announcers from starting, stopping commands
121
+ etc. This uses nearly the same implementation like `cucumber`. (PR #309)
122
+ * Starting/Stopping a command directly (`command.start`, `command.stop`) is now
123
+ reported to the command monitor and `last_command_stopped` is updated
124
+ correctly
125
+ * Added `#restart` to `Command` to make it possible to restart a command
126
+ * Added check to prevent a command which has already been started, to be
127
+ started again. Otherwise you've got hidden commands which are not stopped
128
+ after a cucumber/rspec/minitest run.
129
+ * Adding alot of documentation to `aruba`
130
+ * Refactored `#run`: Now it wants you to pass a `Hash` containing the options.
131
+ The old syntax is still supported, but is deprecated.
132
+ * Added `#find_command` as experimental feature. It searches the started
133
+ commands from last to first.
134
+ * Added `be_an_executable` matcher
135
+
136
+
137
+ ## [v0.11.0.pre](https://github.com/cucumber/aruba/compare/v0.10.2...v0.11.0.pre)
138
+
139
+ * Set stop signal which should be used to stop a process after a timeout or
140
+ used to terminate a process. This can be used to stop processes running
141
+ docker + "systemd". If you send a systemd-enable container SIGINT it will be
142
+ stopped.
143
+ * Added a configurable amount of time after a command was started -
144
+ startup_wait_time. Otherwise you get problems when a process takes to long to
145
+ startup when you run in background and want to sent it a signal.
146
+ * Replace `<variable>` in commandline, e.g. `<pid-last-command-started>`
147
+ [experimental]
148
+ * Added announce formatter for time spans, e.g. `startup_wait_time`
149
+ * All `*Process`-classes e.g. `BasicProcess`, `SpawnProcess` etc. are marked as
150
+ private. Users should use `#run('cmd')` and don't use the classes directly.
151
+ * `rvm`-methods are deprecated. They too ruby specific.
152
+
153
+
154
+ ## [v0.10.2](https://github.com/cucumber/aruba/compare/v0.10.1...v0.10.2)
155
+
156
+ * Fixed problem in regex after merge of step definitions
157
+
158
+
159
+ ## [v0.10.1](https://github.com/cucumber/aruba/compare/v0.10.0...v0.10.1)
160
+
161
+ * Merged remove steps for file and directory from 4 into 2 step definitions
162
+
163
+
164
+ ## [v0.10.0](https://github.com/cucumber/aruba/compare/v0.10.0.pre2...v0.10.0)
165
+
166
+ * Fix '"#exit_timeout" is deprecated' error (issue #314)
167
+
168
+ ## [v0.10.0.pre2](https://github.com/cucumber/aruba/compare/v0.10.0.pre...v0.10.0.pre2)
169
+
170
+ * Take over code from `RSpec::Support::ObjectFormatter` since `rspec-support`
171
+ is not intended for public use.
172
+
173
+ ## [v0.10.0.pre](https://github.com/cucumber/aruba/compare/v0.9.0...v0.10.0)
174
+
175
+ * Add some new steps to make writing documentation easier using "cucumber",
176
+ "rspec", "minitest" together with "aruba" - see [Feature](features/getting_started/supported_testing_frameworks.feature)
177
+ for some examples
178
+ * Write output of commands directly to disk if SpawnProcess is used (see https://github.com/cucumber/aruba/commit/85d74fcca4fff4e753776925d8b003cddaa8041d)
179
+ * Refactored API of cucumber steps to reduce the need for more methods and make
180
+ it easier for users to write their own steps (issue #306)
181
+ * Added `aruba init` to the cli command to setup environment for aruba (issue
182
+ #308)
183
+ * Added new method `delete_environment_variable` to remove environment variable
184
+ * Added work around because of method name conflict between Capybara and RSpec
185
+ (https://github.com/cucumber/aruba/commit/1939c4049d5195ffdd967485f50119bdd86e98a0)
186
+
187
+
188
+ ## [v0.9.0](https://github.com/cucumber/aruba/compare/v0.9.0.pre2...v0.9.0)
189
+
190
+ * Fix feature test
191
+ * Fix ordering in console
192
+ * Fix bug in console handling SIGINT
193
+ * Deprecated Aruba/Reporting before we remove it
194
+
195
+ ## [v0.9.0.pre2](https://github.com/cucumber/aruba/compare/v0.9.0.pre...v0.9.0.pre2)
196
+
197
+ * Redefine #to_s and #inspect for BasicProcess to reduce the sheer amount of
198
+ information, if a command produces a lot of output
199
+ * Added new matcher `#all_objects` to check if an object is included + a error message for
200
+ failures which is similar to the `#all`-matcher of `RSpec`
201
+ * Add `have_output`-, `have_output_on_stderr`, `have_output_on_stdout`-matchers
202
+ * Replace all `assert_*` and `check_*`-methods through expectations
203
+ * Add hook `@announce-output` to output both, stderr and stdout
204
+ * Add a lot of documentation (issue #260)
205
+ * Replace `#last_command` through `#last_command_started` and
206
+ `#last_command_stopped` to make it more explicit
207
+ * Improve syntax highlighting in cucumber feature tests by adding programming
208
+ language to `"""`-blocks
209
+ * Rename tags `@ignore-*` to `@unsupported-on-*`
210
+ * Introduce our own `BaseMatcher`-class to remove the dependency to `RSpec`'s
211
+ private matcher APIs
212
+ * Now we make the process started via `SpawnProcess` the leader of the group to
213
+ kill all sub-processes more reliably
214
+
215
+
216
+ ## [v0.9.0.pre](https://github.com/cucumber/aruba/compare/v0.8.1...v0.9.0.pre)
217
+
218
+ * Improve documentation for filesystem api and move it to feature tests
219
+ * Add logger to aruba. Its output can be captured by rspec.
220
+ * Fix incorrect deprecation message for check_file_presence (issue #292)
221
+ * Fix for Gemfile excludes windows for many gems (issue #282)
222
+ * Make feature tests compatible with ruby 1.9.2
223
+ * Gather disk usage for file(s) (issue #294)
224
+ * Replace keep_ansi-config option by remove_ansi_escape_sequences-option
225
+ * Split up `#unescape` into `#extract_text` and `#unescape_text`
226
+ * Use `UnixPlatform` and `WindowsPlatform` to make code for different platforms maintainable
227
+ * Work around `ENV`-bug in `Jruby` buy using `#dup` on `ENV.to_h` (issue jruby/jruby#3162)
228
+ * Speed up test on `JRuby` by using `--dev`-flag
229
+ * Work around problems when copying files with `cp` on MRI-ruby 1.9.2
230
+ * Add cmd.exe /c for SpawnProcess on Windows (issue #302)
231
+ * Split up `#which` for Windows and Unix/Linux (issue #304)
232
+ * Add `aruba console`-command to play around with aruba (issue 305)
233
+
234
+
235
+ ## [v0.8.1](https://github.com/cucumber/aruba/compare/v0.8.0...v0.8.1)
236
+
237
+ * Fix problem if working directory of aruba does not exist (issue #286)
238
+ * Re-Add removed method only_processes
239
+ * Fixed problem with last exit status
240
+ * Added appveyor to run tests of aruba on Windows (issue #287)
241
+ * Make the home directory configurable and use Around/around-hook to apply it
242
+ * Add announcer to output the full environment before a command is run
243
+ * Use prepend_environment_variable to modify PATH for rspec integration
244
+ * Add VERSION-constant to aruba and use it for code which should be activated on >= 1.0.0
245
+
246
+ ## [v0.8.0](https://github.com/cucumber/aruba/compare/v0.8.0.pre3...v0.8.0)
247
+ * Build with cucumber 1.3.x on ruby 1.8.7, with cucumber 2.x on all other platforms
248
+ * Fixed bugs in aruba's cucumber steps
249
+ * Disable use of `win32/file`
250
+ * Fixed but in `in_current_dir*` not returning the result of the block
251
+ * Fixed checks for file content
252
+ * Fixed selectors for DebugProcess and InProcess to support sub-classes as well
253
+
254
+
255
+ ## [v0.8.0.pre3](https://github.com/cucumber/aruba/compare/v0.8.0.pre2...v0.8.0.pre3)
256
+ * Depend on cucumber 1.3.x for compatibility on ruby 1.8.7
257
+ * Change PWD and OLDPW when `cd('path') {}` is used within that block
258
+ * Make nesting of `cd` possible
259
+ * Make `run` inside `cd` possible
260
+ * Fixed some bugs
261
+ * Move `Aruba.proces = InProcess|SpawnProcess|DebugProcess` to `aruba.config`
262
+ * Deprecate direct use of `InProcess|SpawnProcess|DebugProcess`. Now `Command`
263
+ needs to be used
264
+ * Add new configuration options `command_launcher` and `main_klass` for
265
+ deprecation of old-style `Aruba.process = <class>`, `:spawn` is the default
266
+ value for the `command_launcher`-option
267
+ * Added checks for version of `rspec-expectations` to support older `rspec`
268
+ versions like `2.11`
269
+ * Now each `path/to/dir` pushed to `aruba.current_directory` is `pop`ed as whole
270
+ * Make testing of `aruba.current_directory` easier by supporting `end_with?` and `start_with?`
271
+
272
+ ## [v0.8.0.pre2](https://github.com/cucumber/aruba/compare/v0.8.0...v0.8.0.pre2)
273
+ * Relax requirement on rspec-expectations (3.3 -> 2.11)
274
+
275
+ ## [v0.8.0.pre](https://github.com/cucumber/aruba/compare/v0.7.4...v0.8.0.pre)
276
+ * Make aruba compatible with "ruby 1.8.7" and "ruby 1.9.3" again (fixes #279)
277
+ * Move more and more documentation to cucumber steps (partly fixes #268)
278
+ * Refactoring of test suits, now rspec tests run randomly
279
+ * Move Aruba constants to configuration class (fixes #271)
280
+ * Added runtime configuration via `aruba.config` which is reset for each test run
281
+ * Refactored hooks: now there are `after()` and `before()`-hooks, old
282
+ before_cmd-hook is still working, but is deprecated, added new
283
+ `after(:command)`-hook.
284
+ * Refactored jruby-startup helper
285
+ * Cleanup API by moving deprecated methods to separate class
286
+ * Cleanup Core API - reduced to `cd`, `expand_path`, `setup_aruba` and use expand_path wherever possible (fixes #253)
287
+ * Better isolation for environment variable manipulation - really helpful from 1.0.0 on
288
+ * Move configuration files like `jruby.rb` to `aruba/config/`-directory
289
+ * Change default exit timeout to 15 seconds to work around long running processes on travis
290
+ * Use of instance variables like @aruba_timeout_seconds or
291
+ @aruba_io_wait_seconds are deprecated. Use `Aruba.configure do |config|
292
+ config.exit_timeout = 10` etc. for this.
293
+
294
+ ## [v0.7.4](https://github.com/cucumber/aruba/compare/v0.7.2...v0.7.4)
295
+ * Really Fixed post install message
296
+
297
+ ## [v0.7.3](https://github.com/cucumber/aruba/compare/v0.7.2...v0.7.3)
298
+ * Fixed post install message
299
+
300
+ ## [v0.7.2](https://github.com/cucumber/aruba/compare/v0.7.1...v0.7.2)
301
+ * Do not trigger Announcer API deprecation warning (issue #277)
302
+
303
+ ## [v0.7.1](https://github.com/cucumber/aruba/compare/v0.7.0...v0.7.1)
304
+ * Do not break if @interactive is used
305
+
306
+ ## [v0.7.0](https://github.com/cucumber/aruba/compare/v0.6.2...v0.7.0)
307
+ * Introducing root_directory (issue #232)
308
+ * Introducing fixtures directory (issue #224)
309
+ * Make sure a file/directory does not exist + Cleanup named file/directory steps (issue #234)
310
+ * Make matcher have_permisions public and add documentation (issue #239)
311
+ * Added matcher for file content (issue #238)
312
+ * Add rspec integrator (issue #244)
313
+ * Deprecate _file/_directory in method names (issue #243)
314
+ * Improve development environment (issue #240)
315
+ * Cleanup process management (issue #257)
316
+ * Make path content available through matchers and api metchods (issue #250)
317
+ * Refactor announcer to support user defined announce channels (fixes #267)
318
+ * `InProcess` requires that the working directory is determined on runtime not no loadtime
319
+
320
+ ## [v0.6.2](https://github.com/cucumber/aruba/compare/v0.6.1...v0.6.2)
321
+ * Fixed minor issue #223)
322
+ * Added support for ruby 2.1.3 -- 2.1.5
323
+ * Added support for comparison to a fixture file
324
+
325
+ ## [v0.6.1](https://github.com/cucumber/aruba/compare/v0.6.0...v0.6.1)
326
+ * Added support for ruby 2.1.2
327
+ * Added support for ~ expansion
328
+ * Added support for with_env
329
+
330
+ ## [v0.6.0](https://github.com/cucumber/aruba/compare/v0.5.4...v0.6.0)
331
+ * Dropped support for ruby 1.8
332
+ * Added support for ruby 2.1.0 and 2.1.1
333
+ * Added rspec 3.0.0 support
334
+
335
+ ## [v0.5.4](https://github.com/cucumber/aruba/compare/v0.5.3...v0.5.4)
336
+ * Added support for piping in files (#154 maxmeyer, dg-vrnetze)
337
+ * Added cucumber steps for environment variables (#156 dg-vrnetze)
338
+ * Added support for file mode (#157 maxmeyer, dg-vrnetze)
339
+
340
+ ## [v0.5.3](https://github.com/cucumber/aruba/compare/v0.5.2...v0.5.3)
341
+ * Fix for UTF-8 support (#151 Matt Wynne, Jarl Friis)
342
+ * Fix for open file leakage (#150 @JonRowe)
343
+
344
+ ## [v0.5.2](https://github.com/cucumber/aruba/compare/v0.5.1...v0.5.2)
345
+
346
+ * Plugin API for greater speed. Test Ruby CLI programs in a single Ruby process (#148 Aslak Hellesøy)
347
+ * Fix memory leak when several commands are executed in a single run (#144 @y-higuchi)
348
+
349
+ ## [v0.5.1](https://github.com/cucumber/aruba/compare/v0.5.0...v0.5.1)
350
+ * Individual timeout settings when running commands (#124 Jarl Friis)
351
+ * Varous fixes for JRuby tests, should now work on more versions of JRuby
352
+
353
+ ## [v0.5.0](https://github.com/cucumber/aruba/compare/v0.4.10...v0.5.0)
354
+ * Add #with_file_content to the DSL (#110 Pavel Argentov)
355
+ * Make JRuby performance tweaks optional (#102 Taylor Carpenter, #125 Andy Lindeman)
356
+ * Add assert_partial_output_interactive so you can peek at the output from a running process (#104 Taylor Carpenter)
357
+ * Add assert_not_matching_output (#111 Pavel Argentov)
358
+ * Add remove_dir (#121 Piotr Niełacny)
359
+
360
+ ## [v0.4.11](https://github.com/cucumber/aruba/compare/v0.4.10...v0.4.11)
361
+ * Fix duplicated output (#91 Robert Wahler, Matt Wynne)
362
+ * Fix Gemspec format (#101 Matt Wynne)
363
+
364
+ ## [v0.4.10](https://github.com/cucumber/aruba/compare/v0.4.9...v0.4.10)
365
+ * Fix broken JRuby file following rename of hook (Thomas Reynolds)
366
+ * Add terminate method to API (Taylor Carpenter)
367
+
368
+ ## [v0.4.9](https://github.com/cucumber/aruba/compare/v0.4.8...v0.4.9)
369
+ * Rename before_run hook to before_cmd (Matt Wynne)
370
+ * Fix 1.8.7 compatibility (#95 Dave Copeland)
371
+
372
+ ## [v0.4.8](https://github.com/cucumber/aruba/compare/v0.4.7...v0.4.8)
373
+
374
+ * Add before_run hook (Matt Wynne)
375
+ * Add JRuby performance tweaks (#93 Myron Marston / Matt Wynne)
376
+ * Invalid/Corrupt spec file for 0.4.7 - undefined method call for nil:Nilclass (#47 Aslak Hellesøy)
377
+
378
+ ## [v0.4.7](https://github.com/cucumber/aruba/compare/v0.4.6...v0.4.7)
379
+
380
+ * Remove rdiscount dependency. (#85 Aslak Hellesøy)
381
+ * Pin to ffi 1.0.9 since 1.0.10 is broken. (Aslak Hellesøy)
382
+ * Added file size specific steps to the Aruba API. (#89 Hector Castro)
383
+
384
+ ## [v0.4.6](https://github.com/cucumber/aruba/compare/v0.4.5...v0.4.6)
385
+
386
+ * Upgraded deps to latest gems. (Aslak Hellesøy)
387
+ * Added Regexp support to Aruba::Api#assert_no_partial_output (Aslak Hellesøy)
388
+
389
+ ## [v0.4.5](https://github.com/cucumber/aruba/compare/v0.4.4...v0.4.5)
390
+
391
+ * Better assertion failure message when an exit code is not as expected. (Matt Wynne)
392
+
393
+ ## [v0.4.4](https://github.com/cucumber/aruba/compare/v0.4.3...v0.4.4)
394
+
395
+ * Fix various bugs with interative processes. (Matt Wynne)
396
+
397
+ ## [v0.4.3](https://github.com/cucumber/aruba/compare/v0.4.2...v0.4.3)
398
+
399
+ * Aruba reporting now creates an index file for reports, linking them all together. (Aslak Hellesøy)
400
+
401
+ ## [v0.4.2](https://github.com/cucumber/aruba/compare/v0.4.1...v0.4.2)
402
+
403
+ * Appending to a file creates the parent directory if it doesn't exist. (Aslak Hellesøy)
404
+
405
+ ## [v0.4.1](https://github.com/cucumber/aruba/compare/v0.4.0...v0.4.1)
406
+
407
+ * Move more logic into Aruba::Api (Aslak Hellesøy)
408
+
409
+ ## [v0.4.0](https://github.com/cucumber/aruba/compare/v0.3.7...v0.4.0)
410
+
411
+ * New, awesome HTML reporting feature that captures everything that happens during a scenario. (Aslak Hellesøy)
412
+ * ANSI escapes from output are stripped by default. Override this with the @ansi tag. (Aslak Hellesøy)
413
+
414
+ ## [v0.3.7](https://github.com/cucumber/aruba/compare/v0.3.6...v0.3.7)
415
+
416
+ * Make Aruba::Api#get_process return the last executed process with passed cmd (Potapov Sergey)
417
+ * Replace announce with puts to comply with cucumber 0.10.6 (Aslak Hellesøy)
418
+ * Fix childprocess STDIN to be synchronous (#40, #71 Tim Ekl)
419
+
420
+ ## [v0.3.6](https://github.com/cucumber/aruba/compare/v0.3.5...v0.3.6)
421
+
422
+ * Changed default value of @aruba_timeout_seconds from 1 to 3. (Aslak Hellesøy)
423
+ * Separate hooks and steps to make it easier to build your own steps on top of Aruba's API (Mike Sassak)
424
+ * @no-clobber to prevent cleanup before each scenario (Mike Sassak)
425
+
426
+ ## [v0.3.5](https://github.com/cucumber/aruba/compare/v0.3.4...v0.3.5)
427
+
428
+ * Store processes in an array to ensure order of operations on Ruby 1.8.x (#48 Mike Sassak)
429
+
430
+ ## [v0.3.4](https://github.com/cucumber/aruba/compare/v0.3.3...v0.3.4)
431
+
432
+ * Use backticks (\`) instead of quotes (") to specify command line. Quote still works, but is deprecated. (Anthony Eden, Aslak Hellesøy)
433
+
434
+ ## [v0.3.3](https://github.com/cucumber/aruba/compare/v0.3.2...v0.3.3)
435
+
436
+ * Updated RSpec development requirement to 2.5 (Robert Speicher, Mike Sassak, Aslak Hellesøy)
437
+ * Updated RubyGems dependency to 1.6.1 (Robert Speicher)
438
+
439
+ ## [v0.3.2](https://github.com/cucumber/aruba/compare/v0.3.1...v0.3.2)
440
+
441
+ * Wrong number of args in the When I overwrite step (Aslak Hellesøy)
442
+
443
+ ## [v0.3.1](https://github.com/cucumber/aruba/compare/v0.3.0...v0.3.1)
444
+
445
+ * Broken 0.3.0 release (#43, #44 Mike Sassak)
446
+ * Quotes (") and newline (\n) in step arguments are no longer unescaped. (Aslak Hellesøy)
447
+
448
+ ## [v0.3.0](https://github.com/cucumber/aruba/compare/v0.2.8...v0.3.0)
449
+
450
+ * Remove latency introduced in the 0.2.8 release (#42 Mike Sassak)
451
+ * New stepdef Then /^the stdout should contain:$/ do |partial_output| (Aslak Hellesøy)
452
+ * Quotes (") and newline (\n) in step arguments no longer need to be backslash-escaped. (Aslak Hellesøy)
453
+
454
+ ## [v0.2.8](https://github.com/cucumber/aruba/compare/v0.2.7...v0.2.8)
455
+
456
+ * Replaced background_process with childprocess, a cross-platform process control library. This will allow Aruba to run on Windows and JRuby in addition to *nix MRI. (#16, #27, #31 Mike Sassak, Jari Bakken, Matt Wynne, Arve Knudsen)
457
+
458
+ ## [v0.2.7](https://github.com/cucumber/aruba/compare/v0.2.6...v0.2.7)
459
+
460
+ * Upgrade to Cucumber 0.10.0. (Aslak Hellesøy)
461
+ * require 'aruba' does nothing - you have to require 'aruba/cucumber' now. This is to prevent bundler from loading it when we don't want to. (Aslak Hellesøy)
462
+ * Outputting a lot of data causes process to time out (#30 Mike Sassak)
463
+
464
+ ## [v0.2.6](https://github.com/cucumber/aruba/compare/v0.2.5...v0.2.6)
465
+
466
+ * You can set @aruba_timeout_seconds in a Before hook to tell Aruba to wait for a process to complete. Default: 1 second. (Aslak Hellesøy)
467
+ * Fixed small bug in /^the stdout should contain exactly:$/ (Aslak Hellesøy)
468
+
469
+ ## [v0.2.5](https://github.com/cucumber/aruba/compare/v0.2.4...v0.2.5)
470
+
471
+ * Added 'a file named "whatever" should (not) exist' (Robert Speicher)
472
+ * Added 'a directory named "whatever" should (not) exist' (Robert Speicher)
473
+ * Added /^the stderr should contain exactly:"$/ (Aslak Hellesøy)
474
+ * Added /^the stdout should contain exactly:"$/ (Aslak Hellesøy)
475
+ * Added /it should pass with exactly:/ (Aslak Hellesøy)
476
+ * @announce, @announce-dir and @announce-cmd for interactive processes (Mike Sassak)
477
+ * Add step defs for detecting output, stdout and stderr by process name (Mike Sassak)
478
+ * Stop all processes before verifying filesystem changes to ensure async operations are complete (#17 Mike Sassak)
479
+ * Outputting large amounts of data causes run steps to hang (#18 Mike Sassak)
480
+
481
+ ## [v0.2.4](https://github.com/cucumber/aruba/compare/v0.2.3...v0.2.4)
482
+
483
+ * Added step definitions for removing files and checking presence of a single file. (Aslak Hellesøy)
484
+
485
+ ## [v0.2.3](https://github.com/cucumber/aruba/compare/v0.2.2...v0.2.3)
486
+
487
+ * Directory should not exist gives false-positive (#13,#15 Nicholas Rutherford)
488
+ * Added step definitions for comparing file contents with regexps (#9 Aslak Hellesøy)
489
+ * Always put ./bin at the beginning of $PATH to make it easier to run own executables (#7 Aslak Hellesøy)
490
+ * Communication with interactive processes (#4 Mike Sassak)
491
+ * Remove hyphens separating stdout and stderr (Arve Knudsen)
492
+
493
+ ## [v0.2.2](https://github.com/cucumber/aruba/compare/v0.2.1...v0.2.2)
494
+
495
+ * Added a @bin tag that sets up './bin' first on the path (Aslak Hellesøy)
496
+ * Richer API making aruba easier to use from Ruby code. (Mark Nijhof, Aslak Hellesøy)
497
+ * No more support for RVM. Use rvm 1.9.2,1.8.7 exec cucumber .... instead. (Mark Nijhof, Aslak Hellesøy)
498
+
499
+ ## [v0.2.1](https://github.com/cucumber/aruba/compare/v0.2.0...v0.2.1)
500
+
501
+ * Always compare with RSpec should =~ instead of should match. This gives a diff when there is no match. (Aslak Hellesøy)
502
+
503
+ ## [v0.2.0](https://github.com/cucumber/aruba/compare/v0.1.9...v0.2.0)
504
+
505
+ * Added aruba.gemspec. (David Chelimsky)
506
+ * Several step definitions regarding output have changed. (#1 Aslak Hellesøy)
507
+
508
+ - /^I should see "([^\"]*)"$/
509
+ + /^the output should contain "([^"]*)"$/
510
+
511
+ - /^I should not see "([^\"]*)"$/
512
+ + /^the output should not contain "([^"]*)"$/
513
+
514
+ - /^I should see:$/
515
+ + /^the output should contain:$/
516
+
517
+ - /^I should not see:$/
518
+ + /^the output should not contain:$/
519
+
520
+ - /^I should see exactly "([^\"]*)"$/
521
+ + /^the output should contain exactly "([^"]*)"$/
522
+
523
+ - /^I should see exactly:$/
524
+ + /^the output should contain exactly:$/
525
+
526
+ - /^I should see matching \/([^\/]*)\/$/
527
+ + /^the output should match \/([^\/]*)\/$/
528
+
529
+ - /^I should see matching:$/
530
+ + /^the output should match:$/
531
+
532
+ ## [v0.1.9](https://github.com/cucumber/aruba/compare/v0.1.8...v0.1.9)
533
+
534
+ * If the GOTGEMS environment variable is set, bundler won't run (faster). (Aslak Hellesøy)
535
+
536
+ ## [v0.1.8](https://github.com/cucumber/aruba/compare/v0.1.7...v0.1.8)
537
+
538
+ * Use // instead of "" for "I should see matching" step. (Aslak Hellesøy)
539
+ * Replace rvm gemset character '%' with '@' for rvm 0.1.24 (#5 Ashley Moran)
540
+ * Support gem bundler, making it easier to specify gems. (Aslak Hellesøy)
541
+
542
+ ## [v0.1.7](https://github.com/cucumber/aruba/compare/v0.1.6...v0.1.7)
543
+
544
+ * New @announce-stderr tag (Robert Wahler)
545
+ * New "I should see matching" steps using Regexp (Robert Wahler)
546
+
547
+ ## [v0.1.6](https://github.com/cucumber/aruba/compare/v0.1.5...v0.1.6)
548
+
549
+ * When /^I successfully run "(.*)"$/ now prints the combined output if exit status is not 0. (Aslak Hellesøy)
550
+ * Add bundle to list of common ruby scripts. (Aslak Hellesøy)
551
+
552
+ ## [v0.1.5](https://github.com/cucumber/aruba/compare/v0.1.4...v0.1.5)
553
+
554
+ * Added ability to map rvm versions to a specific version with config/aruba-rvm.yml. (Aslak Hellesøy)
555
+ * Check for presence of files. (Aslak Hellesøy)
556
+ * Allow specification of rvm gemsets. (Aslak Hellesøy)
557
+ * Detect ruby commands and use current ruby when rvm is not explicitly used. (Aslak Hellesøy)
558
+ * Added support for rvm, making it possible to choose Ruby interpreter. (Aslak Hellesøy)
559
+ * Added @announce-cmd, @announce-stdout and @announce tags, useful for seeing what's executed and outputted. (Aslak Hellesøy)
560
+
561
+ ## [v0.1.4](https://github.com/cucumber/aruba/compare/v0.1.3...v0.1.4)
562
+
563
+ * New step definition for appending to a file (Aslak Hellesøy)
564
+
565
+ ## [v0.1.3](https://github.com/cucumber/aruba/compare/v0.1.2...v0.1.3)
566
+
567
+ * New step definition for cd (change directory) (Aslak Hellesøy)
568
+
569
+ ## [v0.1.2](https://github.com/cucumber/aruba/compare/v0.1.1...v0.1.2)
570
+
571
+ * Separated API from Cucumber step definitions, makes this usable without Cucumber. (Aslak Hellesøy)
572
+
573
+ ## [v0.1.1](https://github.com/cucumber/aruba/compare/v0.1.0...v0.1.1)
574
+
575
+ * Better Regexp escaping (David Chelimsky)
576
+
577
+ ## [v0.1.0](https://github.com/cucumber/aruba/compare/ed6a175d23aaff62dbf355706996f276f304ae8b...v0.1.1)
578
+
579
+ * First release (David Chelimsky and Aslak Hellesøy)