[DRE-commits] [ruby-aruba] 72/74: Merge tag 'v0.11.1' into debian/sid

Hideki Yamane henrich at moszumanska.debian.org
Sat Nov 28 01:16:49 UTC 2015


This is an automated email from the git hooks/post-receive script.

henrich pushed a commit to branch debian/sid
in repository ruby-aruba.

commit bbbd3051b2eecb4fafbc7a29e23cfc10a14e7cfe
Merge: d047b66 ccca036
Author: Hideki Yamane <henrich at debian.org>
Date:   Sat Nov 28 10:06:51 2015 +0900

    Merge tag 'v0.11.1' into debian/sid
    
    Version 0.11.1

 .travis.yml                                        |  19 +-
 Gemfile                                            |   6 +-
 History.md                                         |  58 +++-
 README.md                                          | 347 ++------------------
 aruba.gemspec                                      |   1 +
 features/api/command/find_command.feature          |  83 +++++
 features/api/command/last_command_started.feature  |  50 +++
 features/api/command/last_command_stopped.feature  |  89 +++++
 features/api/command/run.feature                   | 361 ++++++++++++++++++++-
 features/api/command/send_signal.feature           |  53 +++
 features/api/command/stop.feature                  | 131 ++++++++
 features/api/filesystem/fixtures.feature           | 104 ++++++
 features/api/text/replace_variables.feature        |  45 +++
 features/commands/environment_variables.feature    |  64 ----
 features/commands/flushing.feature                 |  74 -----
 features/configuration/startup_wait_time.feature   |  48 +++
 features/file_system_commands.feature              | 220 -------------
 .../cleanup.feature}                               |  17 +-
 .../{usage => getting_started}/install.feature     |   0
 features/getting_started/run_commands.feature      | 177 ++++++++++
 .../supported_programming_languages.feature        |  89 -----
 .../writing_good_feature_tests.feature             |  38 +++
 features/hooks/after/command.feature               |  10 +
 features/hooks/before/command.feature              |  10 +
 .../matchers/file/be_existing_executable.feature   |  87 +++++
 features/output.feature                            | 131 --------
 features/platforms/jruby.feature                   |  14 +
 .../integration.feature}                           |  31 ++
 features/step_definitions/hooks.rb                 |  91 +++++-
 .../command/debug.feature}                         |   0
 .../{commands => command}/exit_statuses.feature    |   0
 .../steps/{commands => command}/in_process.feature | 185 +++++++++++
 .../command}/interactive.feature                   |   2 +-
 .../command/output.feature}                        | 142 ++++++++
 features/steps/{commands => command}/run.feature   |   1 +
 features/steps/command/send_signal.feature         | 104 ++++++
 features/steps/command/stderr.feature              |  68 ++++
 .../output => steps/command}/stdout.feature        |  47 ++-
 features/steps/command/stop.feature                | 313 ++++++++++++++++++
 features/{ => steps/core}/announce.feature         |   0
 features/steps/filesystem/append_to_file.feature   |  45 +++
 features/steps/filesystem/cd_to_directory.feature  |  33 ++
 .../steps/filesystem/check_file_content.feature    |  61 ++++
 .../filesystem/check_permissions_of_file.feature   |  39 +++
 features/steps/filesystem/compare_files.feature    |  42 +++
 features/steps/filesystem/create_directory.feature |  20 +-
 features/steps/filesystem/create_file.feature      |  29 +-
 .../filesystem/existence_of_directory.feature      |  57 ++++
 .../steps/filesystem/existence_of_file.feature     |  43 +++
 features/steps/filesystem/file_content.feature     |  22 ++
 features/steps/filesystem/fixtures.feature         |  64 ++++
 .../filesystem/non_existence_of_directory.feature  |  69 ++++
 .../steps/filesystem/non_existence_of_file.feature |  80 +++++
 features/steps/filesystem/remove_directory.feature |  38 +++
 features/steps/filesystem/remove_file.feature      |  38 +++
 features/steps/overview.feature                    |  60 ++++
 features/utf-8.feature                             |  14 -
 fixtures/fixtures-app/test.txt                     |   1 -
 fixtures/getting-started-app/Gemfile               |   2 +-
 lib/aruba.rb                                       |  19 --
 lib/aruba/announcer.rb                             | 217 -------------
 lib/aruba/api.rb                                   |   2 +
 lib/aruba/api/command.rb                           | 154 ++++++---
 lib/aruba/api/core.rb                              |  21 +-
 lib/aruba/api/deprecated.rb                        |  30 +-
 lib/aruba/api/environment.rb                       |  34 +-
 lib/aruba/api/filesystem.rb                        |  13 +
 lib/aruba/api/rvm.rb                               |   5 +
 lib/aruba/api/text.rb                              |  15 +
 lib/aruba/aruba_path.rb                            |   6 +
 lib/aruba/basic_configuration.rb                   |  38 ++-
 lib/aruba/basic_configuration/option.rb            |   7 +
 lib/aruba/cli.rb                                   |   4 +
 lib/aruba/command.rb                               |  51 ++-
 lib/aruba/config.rb                                |  19 +-
 lib/aruba/config_wrapper.rb                        |  57 +++-
 lib/aruba/console.rb                               |   5 +-
 lib/aruba/console/help.rb                          |   2 +
 lib/aruba/contracts/absolute_path.rb               |   7 +
 lib/aruba/contracts/enum.rb                        |   5 +
 lib/aruba/contracts/is_power_of_two.rb             |  11 +-
 lib/aruba/contracts/relative_path.rb               |   7 +
 lib/aruba/cucumber/command.rb                      |  90 ++++-
 lib/aruba/cucumber/core.rb                         |  24 --
 lib/aruba/cucumber/file.rb                         |  32 +-
 lib/aruba/cucumber/hooks.rb                        |  67 ++--
 lib/aruba/errors.rb                                |  18 +
 lib/aruba/events.rb                                |  39 +++
 lib/aruba/extensions/string/strip.rb               |   1 +
 lib/aruba/file_size.rb                             |  11 +
 lib/aruba/hooks.rb                                 |   2 +
 .../{config_wrapper.rb => in_config_wrapper.rb}    |   9 +-
 lib/aruba/in_process.rb                            |   2 +
 lib/aruba/initializer.rb                           |  37 +++
 lib/aruba/matchers/base/base_matcher.rb            |   2 +
 lib/aruba/matchers/base/object_formatter.rb        |   4 +
 lib/aruba/matchers/collection/all.rb               |   2 +
 lib/aruba/matchers/collection/include_an_object.rb |   2 +
 lib/aruba/matchers/command/have_exit_status.rb     |   2 +-
 .../matchers/command/have_finished_in_time.rb      |  11 +-
 lib/aruba/matchers/command/have_output.rb          |  11 +-
 .../matchers/command/have_output_on_stderr.rb      |  11 +-
 .../matchers/command/have_output_on_stdout.rb      |  11 +-
 .../matchers/file/be_an_existing_executable.rb     |  37 +++
 lib/aruba/matchers/rspec.rb                        |   0
 lib/aruba/platform.rb                              |   4 +
 lib/aruba/platforms/announcer.rb                   | 225 +++++++++++++
 lib/aruba/platforms/aruba_file_creator.rb          |   4 +
 .../platforms/aruba_fixed_size_file_creator.rb     |   4 +
 lib/aruba/{ => platforms}/aruba_logger.rb          |   4 +
 lib/aruba/platforms/command_monitor.rb             | 229 +++++++++++++
 lib/aruba/platforms/determine_disk_usage.rb        |   5 +
 lib/aruba/platforms/determine_file_size.rb         |   9 +
 lib/aruba/platforms/disk_usage_calculator.rb       |   9 +
 lib/aruba/platforms/local_environment.rb           |  12 +
 lib/aruba/platforms/simple_table.rb                |  11 +
 lib/aruba/platforms/unix_command_string.rb         |   3 +
 lib/aruba/platforms/unix_environment_variables.rb  |   3 +
 lib/aruba/platforms/unix_platform.rb               |  22 +-
 lib/aruba/platforms/unix_which.rb                  |   8 +-
 lib/aruba/platforms/windows_command_string.rb      |   7 +
 .../platforms/windows_environment_variables.rb     |   2 +
 lib/aruba/platforms/windows_platform.rb            |   3 +
 lib/aruba/platforms/windows_which.rb               |   8 +-
 lib/aruba/process_monitor.rb                       | 177 ----------
 lib/aruba/processes/basic_process.rb               |  45 ++-
 lib/aruba/processes/debug_process.rb               |  12 +-
 lib/aruba/processes/in_process.rb                  |  34 +-
 lib/aruba/processes/spawn_process.rb               | 140 +++++---
 lib/aruba/rspec.rb                                 |  51 ++-
 lib/aruba/runtime.rb                               |  71 +++-
 lib/aruba/setup.rb                                 |  87 +++++
 lib/aruba/version.rb                               |   2 +-
 spec/aruba/api_spec.rb                             |  49 +--
 ...g_wrapper_spec.rb => in_config_wrapper_spec.rb} |   2 +-
 spec/aruba/spawn_process_spec.rb                   |  23 +-
 spec/support/configs/pry.rb                        |   3 +
 spec/support/shared_contexts/aruba.rb              |   1 +
 138 files changed, 4797 insertions(+), 1693 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-aruba.git



More information about the Pkg-ruby-extras-commits mailing list