[DRE-commits] [pry] 01/08: Merge tag 'upstream/0.10.0'

Youhei SASAKI uwabami-guest at moszumanska.debian.org
Tue Aug 12 11:11:07 UTC 2014


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

uwabami-guest pushed a commit to branch master
in repository pry.

commit f81ce5eaa75c76432c0405b5f1f3e19711eeb644
Merge: a5ef23f 43ff243
Author: Youhei SASAKI <uwabami at gfd-dennou.org>
Date:   Tue Aug 12 19:19:11 2014 +0900

    Merge tag 'upstream/0.10.0'
    
    Upstream version 0.10.0

 .document                                          |   2 -
 .gitignore                                         |  16 -
 .travis.yml                                        |  25 -
 .yardopts                                          |   1 -
 CHANGELOG                                          | 534 --------------
 CHANGELOG.md                                       | 702 ++++++++++++++++++
 CONTRIBUTORS                                       |  55 --
 Gemfile                                            |  12 -
 LICENSE                                            |   4 +-
 README.markdown => README.md                       |  68 +-
 Rakefile                                           | 140 ----
 TODO                                               | 117 ---
 checksums.yaml.gz                                  | Bin 270 -> 268 bytes
 lib/pry.rb                                         | 189 +----
 lib/pry/cli.rb                                     |  52 +-
 lib/pry/code.rb                                    |  82 +-
 lib/pry/code/code_file.rb                          | 103 +++
 lib/pry/code/code_range.rb                         |   3 +-
 lib/pry/code/loc.rb                                |   4 +-
 lib/pry/code_object.rb                             |  61 +-
 lib/pry/color_printer.rb                           |  55 ++
 lib/pry/command.rb                                 |  21 +-
 lib/pry/command_set.rb                             | 119 ++-
 lib/pry/commands.rb                                |   2 +-
 lib/pry/commands/amend_line.rb                     |   4 +-
 lib/pry/commands/bang.rb                           |   2 +-
 lib/pry/commands/cat.rb                            |  13 +-
 lib/pry/commands/cat/exception_formatter.rb        |  13 +-
 lib/pry/commands/cat/file_formatter.rb             |  47 +-
 lib/pry/commands/cat/input_expression_formatter.rb |   2 +-
 lib/pry/commands/cd.rb                             |  17 +-
 lib/pry/commands/change_inspector.rb               |  27 +
 lib/pry/commands/change_prompt.rb                  |  26 +
 lib/pry/commands/code_collector.rb                 |   8 +-
 lib/pry/commands/easter_eggs.rb                    |   6 +-
 lib/pry/commands/edit.rb                           |  32 +-
 lib/pry/commands/edit/exception_patcher.rb         |   4 +-
 lib/pry/commands/edit/file_and_line_locator.rb     |   2 -
 lib/pry/commands/exit_program.rb                   |   1 -
 lib/pry/commands/find_method.rb                    |  38 +-
 lib/pry/commands/gem_install.rb                    |   7 +-
 lib/pry/commands/gem_open.rb                       |   2 +-
 lib/pry/commands/gist.rb                           |  21 +-
 lib/pry/commands/help.rb                           |  28 +-
 lib/pry/commands/hist.rb                           |  35 +-
 lib/pry/commands/install_command.rb                |  26 +-
 lib/pry/commands/list_inspectors.rb                |  35 +
 lib/pry/commands/list_prompts.rb                   |  35 +
 lib/pry/commands/ls.rb                             | 368 ++-------
 lib/pry/commands/ls/constants.rb                   |  47 ++
 lib/pry/commands/ls/formatter.rb                   |  49 ++
 lib/pry/commands/ls/globals.rb                     |  48 ++
 lib/pry/commands/ls/grep.rb                        |  21 +
 lib/pry/commands/ls/instance_vars.rb               |  39 +
 lib/pry/commands/ls/interrogatable.rb              |  18 +
 lib/pry/commands/ls/jruby_hacks.rb                 |  49 ++
 lib/pry/commands/ls/local_names.rb                 |  35 +
 lib/pry/commands/ls/local_vars.rb                  |  39 +
 lib/pry/commands/ls/ls_entity.rb                   |  70 ++
 lib/pry/commands/ls/methods.rb                     |  57 ++
 lib/pry/commands/ls/methods_helper.rb              |  46 ++
 lib/pry/commands/ls/self_methods.rb                |  32 +
 lib/pry/commands/play.rb                           |  54 +-
 lib/pry/commands/pry_backtrace.rb                  |   3 +-
 lib/pry/commands/raise_up.rb                       |   4 +-
 lib/pry/commands/reload_code.rb                    |  35 +-
 lib/pry/commands/ri.rb                             |  10 +-
 lib/pry/commands/shell_command.rb                  |  31 +-
 lib/pry/commands/shell_mode.rb                     |   6 +-
 lib/pry/commands/show_doc.rb                       |   5 +
 lib/pry/commands/show_info.rb                      |  21 +-
 lib/pry/commands/show_source.rb                    |  18 +-
 lib/pry/commands/simple_prompt.rb                  |   2 +-
 lib/pry/commands/toggle_color.rb                   |  12 +-
 lib/pry/commands/watch_expression.rb               | 105 +++
 lib/pry/commands/watch_expression/expression.rb    |  38 +
 lib/pry/commands/whereami.rb                       |  28 +-
 lib/pry/commands/wtf.rb                            |   6 +-
 lib/pry/completion.rb                              | 321 --------
 lib/pry/config.rb                                  | 274 +------
 lib/pry/config/behavior.rb                         | 139 ++++
 lib/pry/config/convenience.rb                      |  26 +
 lib/pry/config/default.rb                          | 165 +++++
 lib/pry/core_extensions.rb                         |  52 +-
 lib/pry/custom_completions.rb                      |   6 -
 lib/pry/editor.rb                                  | 210 +++---
 lib/pry/exceptions.rb                              |  77 ++
 lib/pry/helpers/base_helpers.rb                    | 131 +---
 lib/pry/helpers/command_helpers.rb                 |  18 +-
 lib/pry/helpers/documentation_helpers.rb           |   3 +-
 lib/pry/helpers/text.rb                            |   9 +-
 lib/pry/history.rb                                 |  91 +--
 lib/pry/history_array.rb                           |   7 +-
 lib/pry/hooks.rb                                   |  38 +-
 lib/pry/indent.rb                                  |  12 +-
 lib/pry/input_completer.rb                         | 242 ++++++
 lib/pry/input_lock.rb                              | 132 ++++
 lib/pry/inspector.rb                               |  27 +
 lib/pry/last_exception.rb                          |  61 ++
 lib/pry/method.rb                                  | 169 ++---
 .../edit/method_patcher.rb => method/patcher.rb}   |  79 +-
 lib/pry/module_candidate.rb                        |  18 +-
 lib/pry/object_path.rb                             |  82 ++
 lib/pry/output.rb                                  |  50 ++
 lib/pry/pager.rb                                   | 241 ++++--
 lib/pry/plugins.rb                                 |   2 +-
 lib/pry/prompt.rb                                  |  26 +
 lib/pry/pry_class.rb                               | 379 ++++------
 lib/pry/pry_instance.rb                            | 715 ++++++++----------
 lib/pry/rbx_method.rb                              |  13 -
 lib/pry/rbx_path.rb                                |   2 +-
 lib/pry/repl.rb                                    | 202 +++++
 lib/pry/repl_file_loader.rb                        |  46 +-
 lib/pry/rubygem.rb                                 |  18 +-
 lib/pry/terminal.rb                                |   3 +-
 lib/pry/test/helper.rb                             |  67 +-
 lib/pry/version.rb                                 |   2 +-
 lib/pry/wrapped_module.rb                          | 104 ++-
 man/pry.1                                          | 195 -----
 man/pry.1.html                                     | 204 -----
 man/pry.1.ronn                                     | 141 ----
 metadata.yml                                       | 283 ++-----
 pry.gemspec                                        |  29 -
 spec/Procfile                                      |   3 -
 spec/cli_spec.rb                                   |  78 --
 spec/code_object_spec.rb                           | 277 -------
 spec/code_spec.rb                                  | 219 ------
 spec/command_helpers_spec.rb                       |  29 -
 spec/command_integration_spec.rb                   | 644 ----------------
 spec/command_set_spec.rb                           | 627 ----------------
 spec/command_spec.rb                               | 821 ---------------------
 spec/commands/amend_line_spec.rb                   | 247 -------
 spec/commands/bang_spec.rb                         |  19 -
 spec/commands/cat_spec.rb                          | 164 ----
 spec/commands/cd_spec.rb                           | 250 -------
 spec/commands/disable_pry_spec.rb                  |  25 -
 spec/commands/edit_spec.rb                         | 727 ------------------
 spec/commands/exit_all_spec.rb                     |  34 -
 spec/commands/exit_program_spec.rb                 |  19 -
 spec/commands/exit_spec.rb                         |  34 -
 spec/commands/find_method_spec.rb                  |  70 --
 spec/commands/gem_list_spec.rb                     |  26 -
 spec/commands/gist_spec.rb                         |  79 --
 spec/commands/help_spec.rb                         |  56 --
 spec/commands/hist_spec.rb                         | 181 -----
 spec/commands/jump_to_spec.rb                      |  15 -
 spec/commands/ls_spec.rb                           | 181 -----
 spec/commands/play_spec.rb                         | 140 ----
 spec/commands/raise_up_spec.rb                     |  56 --
 spec/commands/save_file_spec.rb                    | 177 -----
 spec/commands/show_doc_spec.rb                     | 510 -------------
 spec/commands/show_input_spec.rb                   |  17 -
 spec/commands/show_source_spec.rb                  | 782 --------------------
 spec/commands/whereami_spec.rb                     | 203 -----
 spec/completion_spec.rb                            | 241 ------
 spec/control_d_handler_spec.rb                     |  58 --
 spec/documentation_helper_spec.rb                  |  73 --
 spec/editor_spec.rb                                |  79 --
 spec/exception_whitelist_spec.rb                   |  21 -
 spec/fixtures/candidate_helper1.rb                 |  11 -
 spec/fixtures/candidate_helper2.rb                 |   8 -
 spec/fixtures/example.erb                          |   5 -
 spec/fixtures/example_nesting.rb                   |  33 -
 spec/fixtures/show_source_doc_examples.rb          |  15 -
 spec/fixtures/testrc                               |   2 -
 spec/fixtures/testrcbad                            |   2 -
 spec/fixtures/whereami_helper.rb                   |   6 -
 spec/helper.rb                                     |  34 -
 spec/helpers/bacon.rb                              |  86 ---
 spec/helpers/mock_pry.rb                           |  43 --
 spec/helpers/table_spec.rb                         | 105 ---
 spec/history_array_spec.rb                         |  67 --
 spec/hooks_spec.rb                                 | 522 -------------
 spec/indent_spec.rb                                | 301 --------
 spec/input_stack_spec.rb                           |  90 ---
 spec/method_spec.rb                                | 482 ------------
 spec/prompt_spec.rb                                |  60 --
 spec/pry_defaults_spec.rb                          | 419 -----------
 spec/pry_history_spec.rb                           |  99 ---
 spec/pry_output_spec.rb                            |  95 ---
 spec/pry_spec.rb                                   | 515 -------------
 spec/run_command_spec.rb                           |  25 -
 spec/sticky_locals_spec.rb                         | 157 ----
 spec/syntax_checking_spec.rb                       |  81 --
 spec/wrapped_module_spec.rb                        | 261 -------
 wiki/Customizing-pry.md                            | 397 ----------
 wiki/Home.md                                       |   4 -
 187 files changed, 4752 insertions(+), 15560 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