[DRE-commits] [pry] 01/07: Update upstream source from tag 'upstream/0.11.0'

Daisuke Higuchi dai at moszumanska.debian.org
Sat Oct 21 13:13:05 UTC 2017


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

dai pushed a commit to branch master
in repository pry.

commit 1be7d67d619464645346ef8cddcd18ec218fc1dc
Merge: 1d13e43 b1ca464
Author: HIGUCHI Daisuke (VDR dai) <dai at debian.org>
Date:   Sat Oct 21 21:50:22 2017 +0900

    Update upstream source from tag 'upstream/0.11.0'
    
    Update to upstream version '0.11.0'
    with Debian dir 041ab4c5edf2f01d4be54d346b2be01c236cf0b2

 .gitignore                                         |  19 +
 .travis.yml                                        |  20 +-
 CHANGELOG.md                                       |  70 ++-
 Gemfile                                            |   4 +-
 LICENSE                                            |   2 +-
 README.md                                          |  63 +-
 Rakefile                                           |   2 +-
 bin/pry                                            |  10 +-
 lib/pry.rb                                         |   8 +-
 lib/pry/basic_object.rb                            |   6 +
 lib/pry/cli.rb                                     |  73 +--
 lib/pry/code.rb                                    |   7 +-
 lib/pry/code/code_file.rb                          |  10 +-
 lib/pry/code_object.rb                             |  23 +
 lib/pry/color_printer.rb                           |  31 +-
 lib/pry/command.rb                                 |  56 +-
 lib/pry/command_set.rb                             |  11 +-
 lib/pry/commands/cat/exception_formatter.rb        |  21 +-
 lib/pry/commands/cat/file_formatter.rb             |  10 +-
 lib/pry/commands/code_collector.rb                 |  30 +-
 lib/pry/commands/easter_eggs.rb                    |  18 +-
 lib/pry/commands/edit.rb                           |  10 +-
 lib/pry/commands/edit/file_and_line_locator.rb     |   2 +-
 lib/pry/commands/find_method.rb                    |   2 +-
 lib/pry/commands/gem_open.rb                       |   2 +-
 lib/pry/commands/gem_readme.rb                     |  25 +
 lib/pry/commands/gem_search.rb                     |  40 ++
 lib/pry/commands/hist.rb                           |   4 +-
 lib/pry/commands/jump_to.rb                        |  14 +-
 lib/pry/commands/ls.rb                             |   4 +-
 lib/pry/commands/ls/constants.rb                   |  13 +-
 lib/pry/commands/ls/formatter.rb                   |   1 +
 lib/pry/commands/ls/jruby_hacks.rb                 |   4 +-
 lib/pry/commands/ls/self_methods.rb                |   2 +
 lib/pry/commands/play.rb                           |   4 +-
 lib/pry/commands/reload_code.rb                    |   4 +-
 lib/pry/commands/ri.rb                             |   4 +
 lib/pry/commands/shell_command.rb                  |  42 +-
 lib/pry/commands/show_info.rb                      |  12 +-
 lib/pry/commands/watch_expression/expression.rb    |   2 +-
 lib/pry/commands/whereami.rb                       |  13 +-
 lib/pry/config.rb                                  |  19 +-
 lib/pry/config/behavior.rb                         | 189 ++++--
 lib/pry/config/default.rb                          |  54 +-
 lib/pry/config/memoization.rb                      |  44 ++
 lib/pry/core_extensions.rb                         |  14 +-
 lib/pry/editor.rb                                  |   2 +-
 lib/pry/exceptions.rb                              |   2 +-
 lib/pry/forwardable.rb                             |  23 +
 lib/pry/helpers/base_helpers.rb                    |  16 +-
 lib/pry/helpers/documentation_helpers.rb           |   1 +
 lib/pry/helpers/options_helpers.rb                 |   2 +-
 lib/pry/helpers/text.rb                            | 144 +++--
 lib/pry/history.rb                                 |  23 +-
 lib/pry/history_array.rb                           |   2 +-
 lib/pry/hooks.rb                                   | 155 ++---
 lib/pry/indent.rb                                  |   8 +-
 lib/pry/input_completer.rb                         | 258 ++++----
 lib/pry/last_exception.rb                          |   4 +-
 lib/pry/method.rb                                  |  30 +-
 lib/pry/method/disowned.rb                         |   1 +
 lib/pry/method/patcher.rb                          |   3 -
 lib/pry/output.rb                                  |  75 ++-
 lib/pry/pager.rb                                   |  19 +-
 lib/pry/plugins.rb                                 |  25 +-
 lib/pry/pry_class.rb                               |  34 +-
 lib/pry/pry_instance.rb                            |  14 +-
 lib/pry/repl.rb                                    |  46 +-
 lib/pry/repl_file_loader.rb                        |   2 +-
 lib/pry/rubygem.rb                                 |   4 +-
 lib/pry/slop.rb                                    | 661 +++++++++++++++++++++
 LICENSE => lib/pry/slop/LICENSE                    |  21 +-
 lib/pry/slop/commands.rb                           | 196 ++++++
 lib/pry/slop/option.rb                             | 208 +++++++
 lib/pry/terminal.rb                                |  21 +-
 lib/pry/test/helper.rb                             |  15 +-
 lib/pry/version.rb                                 |   2 +-
 lib/pry/wrapped_module.rb                          |  14 +-
 .../candidate.rb}                                  |  20 +-
 multi_test_inside_docker.sh                        |   2 +-
 pry.gemspec                                        |   3 +-
 spec/Procfile                                      |   3 -
 spec/cli_spec.rb                                   |  14 +-
 spec/code_object_spec.rb                           |  92 +--
 spec/code_spec.rb                                  | 148 ++---
 spec/color_printer_spec.rb                         |  84 +++
 spec/command_helpers_spec.rb                       |  10 +-
 spec/command_integration_spec.rb                   | 166 +++---
 spec/command_set_spec.rb                           | 225 +++----
 spec/command_spec.rb                               | 339 ++++++-----
 spec/commands/amend_line_spec.rb                   |  58 +-
 spec/commands/bang_spec.rb                         |   8 +-
 spec/commands/cat/file_formatter_spec.rb           |  83 +--
 spec/commands/cat_spec.rb                          |  30 +-
 spec/commands/cd_spec.rb                           |  96 +--
 spec/commands/disable_pry_spec.rb                  |   4 +-
 spec/commands/edit_spec.rb                         | 257 +++++---
 spec/commands/exit_all_spec.rb                     |  20 +-
 spec/commands/exit_program_spec.rb                 |   2 +-
 spec/commands/exit_spec.rb                         |  16 +-
 spec/commands/find_method_spec.rb                  |  23 +-
 spec/commands/gem_list_spec.rb                     |  11 +-
 spec/commands/gist_spec.rb                         |   6 +-
 spec/commands/help_spec.rb                         |  18 +-
 spec/commands/hist_spec.rb                         |  73 ++-
 spec/commands/jump_to_spec.rb                      |  19 +-
 spec/commands/ls_spec.rb                           | 124 ++--
 spec/commands/play_spec.rb                         |  33 +-
 spec/commands/raise_up_spec.rb                     |  10 +-
 spec/commands/reload_code_spec.rb                  |  11 +
 spec/commands/ri_command_spec.rb                   |   6 +
 spec/commands/save_file_spec.rb                    |  24 +-
 spec/commands/shell_command_spec.rb                |  34 +-
 spec/commands/show_doc_spec.rb                     | 152 ++---
 spec/commands/show_input_spec.rb                   |   4 +-
 spec/commands/show_source_spec.rb                  | 256 ++++----
 spec/commands/watch_expression_spec.rb             |  14 +-
 spec/commands/whereami_spec.rb                     | 214 ++++---
 spec/completion_spec.rb                            |  50 +-
 spec/config/behavior_spec.rb                       |  22 +
 spec/config/memoization_spec.rb                    |  21 +
 spec/config_spec.rb                                | 111 +++-
 spec/control_d_handler_spec.rb                     |  14 +-
 spec/documentation_helper_spec.rb                  |  28 +-
 spec/editor_spec.rb                                |  11 +-
 spec/exception_whitelist_spec.rb                   |   2 +-
 spec/fixtures/Gemfile                              |   1 +
 spec/fixtures/cdpathdir/.gitkeep                   |   0
 spec/helper.rb                                     |  11 +-
 spec/helpers/table_spec.rb                         |  22 +-
 spec/history_array_spec.rb                         |  34 +-
 spec/history_spec.rb                               |  52 +-
 spec/hooks_spec.rb                                 | 132 ++--
 spec/indent_spec.rb                                |  89 +--
 spec/method/patcher_spec.rb                        |  16 +-
 spec/method_spec.rb                                | 164 ++---
 spec/pager_spec.rb                                 |  20 +-
 spec/prompt_spec.rb                                |  30 +-
 spec/pry_defaults_spec.rb                          | 151 +++--
 spec/pry_output_spec.rb                            |  35 +-
 spec/pry_repl_spec.rb                              |  50 +-
 spec/pry_spec.rb                                   | 155 +++--
 spec/pryrc_spec.rb                                 |  27 +-
 spec/regression/readline_spec.rb                   |   6 +-
 spec/run_command_spec.rb                           |   4 +-
 spec/spec_helpers/repl_tester.rb                   |   2 +
 spec/sticky_locals_spec.rb                         |  38 +-
 spec/syntax_checking_spec.rb                       |  26 +-
 spec/wrapped_module_spec.rb                        |  87 +--
 149 files changed, 4653 insertions(+), 2519 deletions(-)

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



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