[DRE-commits] [pry] branch master updated (1d13e43 -> 475e4ed)

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


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

dai pushed a change to branch master
in repository pry.

      from  1d13e43   Update debian/changelog
      adds  b1ca464   New upstream version 0.11.0
       new  1be7d67   Update upstream source from tag 'upstream/0.11.0'
      adds  00442f6   New upstream version 0.11.1
       new  674bfed   Update upstream source from tag 'upstream/0.11.1'
      adds  96456d8   New upstream version 0.11.2
       new  977c31b   Update upstream source from tag 'upstream/0.11.2'
       new  697b156   Refresh patch
       new  ff60bb6   dropped, imported upstream.
       new  d775d2f   Refresh patches
       new  475e4ed   update debian/changelog (WIP)

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |  19 ++
 .travis.yml                                        |  21 +-
 CHANGELOG.md                                       |  70 +++--
 Gemfile                                            |   4 +-
 LICENSE                                            |   2 +-
 README.md                                          |  63 ++--
 Rakefile                                           |   2 +-
 bin/pry                                            |  10 +-
 debian/changelog                                   |  13 +
 .../0005-Remove-git-ls-files-from-gemspec.patch    |  12 +-
 .../adjust-test-that-fails-on-debian-buildd.patch  |  14 +-
 debian/patches/dont-try-to-write-outside-build-dir |  12 +-
 debian/patches/series                              |   1 -
 debian/patches/use-embedded-pry.patch              |  35 ---
 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 +-
 {debian/slop-3.6.0/lib => lib/pry}/slop.rb         |  94 +++---
 {debian/slop-3.6.0 => lib/pry/slop}/LICENSE        |   0
 .../slop-3.6.0/lib => lib/pry}/slop/commands.rb    |   4 +-
 {debian/slop-3.6.0/lib => lib/pry}/slop/option.rb  |  10 +-
 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                                        |   5 +-
 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 +
 .../fixtures/{cat_load_path => 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 +++---
 155 files changed, 3652 insertions(+), 2632 deletions(-)
 create mode 100644 .gitignore
 delete mode 100644 debian/patches/use-embedded-pry.patch
 create mode 100644 lib/pry/basic_object.rb
 create mode 100644 lib/pry/commands/gem_readme.rb
 create mode 100644 lib/pry/commands/gem_search.rb
 create mode 100644 lib/pry/config/memoization.rb
 create mode 100644 lib/pry/forwardable.rb
 copy {debian/slop-3.6.0/lib => lib/pry}/slop.rb (89%)
 copy {debian/slop-3.6.0 => lib/pry/slop}/LICENSE (100%)
 copy {debian/slop-3.6.0/lib => lib/pry}/slop/commands.rb (98%)
 copy {debian/slop-3.6.0/lib => lib/pry}/slop/option.rb (96%)
 rename lib/pry/{module_candidate.rb => wrapped_module/candidate.rb} (88%)
 delete mode 100644 spec/Procfile
 create mode 100644 spec/color_printer_spec.rb
 create mode 100644 spec/commands/ri_command_spec.rb
 create mode 100644 spec/config/behavior_spec.rb
 create mode 100644 spec/config/memoization_spec.rb
 create mode 100644 spec/fixtures/Gemfile
 copy spec/fixtures/{cat_load_path => cdpathdir/.gitkeep} (100%)

-- 
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