[DRE-commits] [pry] 01/03: Merge tag 'upstream/0.9.12.2'

Youhei SASAKI uwabami-guest at alioth.debian.org
Wed Aug 7 15:57:51 UTC 2013


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

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

commit 29d5d17a4156196b37c1bad178893bd7076137ef
Merge: d9f5223 5061776
Author: Youhei SASAKI <uwabami at gfd-dennou.org>
Date:   Wed Aug 7 23:58:45 2013 +0900

    Merge tag 'upstream/0.9.12.2'
    
    Upstream version 0.9.12.2

 .gitignore                                         |    1 +
 .travis.yml                                        |    6 +-
 CHANGELOG                                          |  214 ++++-
 CONTRIBUTORS                                       |   60 +-
 Gemfile                                            |    7 +
 Guardfile                                          |   62 ++
 README.markdown                                    |   39 +-
 Rakefile                                           |   73 +-
 checksums.yaml.gz                                  |  Bin 0 -> 270 bytes
 examples/example_basic.rb                          |   15 -
 examples/example_command_override.rb               |   32 -
 examples/example_commands.rb                       |   36 -
 examples/example_hooks.rb                          |    9 -
 examples/example_image_edit.rb                     |   67 --
 examples/example_input.rb                          |    7 -
 examples/example_input2.rb                         |   29 -
 examples/example_output.rb                         |   11 -
 examples/example_print.rb                          |    6 -
 examples/example_prompt.rb                         |    9 -
 examples/helper.rb                                 |    6 -
 lib/pry.rb                                         |  200 +++--
 lib/pry/cli.rb                                     |   90 ++-
 lib/pry/code.rb                                    |  358 +++++----
 lib/pry/code/code_range.rb                         |   70 ++
 lib/pry/code/loc.rb                                |   92 +++
 lib/pry/code_object.rb                             |  153 ++++
 lib/pry/command.rb                                 |  449 ++++++++---
 lib/pry/command_set.rb                             |  316 ++++----
 lib/pry/commands.rb                                |   27 +-
 lib/pry/commands/amend_line.rb                     |   99 +++
 lib/pry/commands/bang.rb                           |   20 +
 lib/pry/commands/bang_pry.rb                       |   17 +
 lib/pry/commands/cat.rb                            |   53 ++
 lib/pry/commands/cat/abstract_formatter.rb         |   27 +
 lib/pry/commands/cat/exception_formatter.rb        |   78 ++
 lib/pry/commands/cat/file_formatter.rb             |   84 ++
 lib/pry/commands/cat/input_expression_formatter.rb |   43 +
 lib/pry/commands/cd.rb                             |   30 +
 lib/pry/commands/code_collector.rb                 |  165 ++++
 lib/pry/commands/disable_pry.rb                    |   27 +
 lib/pry/commands/disabled_commands.rb              |    2 +
 lib/pry/commands/easter_eggs.rb                    |  112 +++
 lib/pry/commands/edit.rb                           |  207 +++++
 lib/pry/commands/edit/exception_patcher.rb         |   25 +
 lib/pry/commands/edit/file_and_line_locator.rb     |   38 +
 lib/pry/commands/edit/method_patcher.rb            |  122 +++
 lib/pry/commands/exit.rb                           |   42 +
 lib/pry/commands/exit_all.rb                       |   29 +
 lib/pry/commands/exit_program.rb                   |   24 +
 lib/pry/commands/find_method.rb                    |  199 +++++
 lib/pry/commands/fix_indent.rb                     |   19 +
 lib/pry/commands/gem_cd.rb                         |   26 +
 lib/pry/commands/gem_install.rb                    |   29 +
 lib/pry/commands/gem_list.rb                       |   33 +
 lib/pry/commands/gem_open.rb                       |   29 +
 lib/pry/commands/gist.rb                           |  102 +++
 lib/pry/commands/help.rb                           |  164 ++++
 lib/pry/commands/hist.rb                           |  161 ++++
 lib/pry/commands/import_set.rb                     |   22 +
 lib/pry/commands/install_command.rb                |   51 ++
 lib/pry/commands/jump_to.rb                        |   29 +
 lib/pry/commands/ls.rb                             |  338 ++++++++
 lib/pry/commands/nesting.rb                        |   25 +
 lib/pry/commands/play.rb                           |   69 ++
 lib/pry/commands/pry_backtrace.rb                  |   26 +
 lib/pry/commands/pry_version.rb                    |   17 +
 lib/pry/commands/raise_up.rb                       |   32 +
 lib/pry/commands/reload_code.rb                    |   65 ++
 lib/pry/commands/reset.rb                          |   18 +
 lib/pry/commands/ri.rb                             |   56 ++
 lib/pry/commands/save_file.rb                      |   61 ++
 lib/pry/commands/shell_command.rb                  |   43 +
 lib/pry/commands/shell_mode.rb                     |   27 +
 lib/pry/commands/show_doc.rb                       |   78 ++
 lib/pry/commands/show_info.rb                      |  200 +++++
 lib/pry/commands/show_input.rb                     |   17 +
 lib/pry/commands/show_source.rb                    |   38 +
 lib/pry/commands/simple_prompt.rb                  |   22 +
 lib/pry/commands/stat.rb                           |   40 +
 lib/pry/commands/switch_to.rb                      |   23 +
 lib/pry/commands/toggle_color.rb                   |   20 +
 lib/pry/commands/whereami.rb                       |  182 +++++
 lib/pry/commands/wtf.rb                            |   57 ++
 lib/pry/completion.rb                              |  361 +++++----
 lib/pry/config.rb                                  |   88 ++-
 lib/pry/core_extensions.rb                         |  134 +++-
 lib/pry/default_commands/basic.rb                  |   55 --
 lib/pry/default_commands/context.rb                |  209 -----
 lib/pry/default_commands/documentation.rb          |  209 -----
 lib/pry/default_commands/easter_eggs.rb            |   91 ---
 lib/pry/default_commands/gems.rb                   |   84 --
 lib/pry/default_commands/input.rb                  |  247 ------
 lib/pry/default_commands/introspection.rb          |  347 ---------
 lib/pry/default_commands/ls.rb                     |  200 -----
 lib/pry/default_commands/shell.rb                  |  240 ------
 lib/pry/editor.rb                                  |  129 +++
 lib/pry/extended_commands/experimental.rb          |   12 -
 lib/pry/helpers.rb                                 |    1 +
 lib/pry/helpers/base_helpers.rb                    |  218 +++---
 lib/pry/helpers/command_helpers.rb                 |  133 +---
 lib/pry/helpers/documentation_helpers.rb           |   76 ++
 lib/pry/helpers/options_helpers.rb                 |    2 +-
 lib/pry/helpers/table.rb                           |  109 +++
 lib/pry/helpers/text.rb                            |   24 +-
 lib/pry/history.rb                                 |   37 +-
 lib/pry/history_array.rb                           |    5 +
 lib/pry/hooks.rb                                   |    6 +-
 lib/pry/indent.rb                                  |  243 +++++-
 lib/pry/method.rb                                  |  374 +++++----
 lib/pry/method/disowned.rb                         |   53 ++
 lib/pry/method/weird_method_locator.rb             |  186 +++++
 lib/pry/module_candidate.rb                        |  146 ++++
 lib/pry/pager.rb                                   |   90 +++
 lib/pry/plugins.rb                                 |    9 +-
 lib/pry/pry_class.rb                               |  181 ++++-
 lib/pry/pry_instance.rb                            |  380 +++++----
 lib/pry/rbx_method.rb                              |   11 +-
 lib/pry/rbx_path.rb                                |   24 +-
 lib/pry/repl_file_loader.rb                        |   80 ++
 lib/pry/rubygem.rb                                 |   74 ++
 lib/pry/terminal.rb                                |   78 ++
 lib/pry/test/helper.rb                             |  185 +++++
 lib/pry/version.rb                                 |    2 +-
 lib/pry/wrapped_module.rb                          |  320 +++++++-
 metadata.yml                                       |  495 ++++++++----
 pry.gemspec                                        |   58 +-
 spec/Procfile                                      |    3 +
 test/test_cli.rb => spec/cli_spec.rb               |    0
 spec/code_object_spec.rb                           |  277 +++++++
 test/test_code.rb => spec/code_spec.rb             |   22 +-
 spec/command_helpers_spec.rb                       |   29 +
 spec/command_integration_spec.rb                   |  644 +++++++++++++++
 .../command_set_spec.rb                            |  152 +++-
 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                            |  239 ++++++
 spec/control_d_handler_spec.rb                     |   58 ++
 spec/documentation_helper_spec.rb                  |   73 ++
 spec/editor_spec.rb                                |   79 ++
 .../exception_whitelist_spec.rb                    |    8 +-
 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 +
 {test => spec/fixtures}/testrc                     |    0
 {test => spec/fixtures}/testrcbad                  |    0
 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 +++
 .../history_array_spec.rb                          |   40 +-
 test/test_hooks.rb => spec/hooks_spec.rb           |   32 +
 test/test_indent.rb => spec/indent_spec.rb         |   64 ++
 .../input_stack_spec.rb                            |   39 +-
 test/test_method.rb => spec/method_spec.rb         |  101 ++-
 spec/prompt_spec.rb                                |   60 ++
 .../pry_defaults_spec.rb                           |  129 +--
 .../pry_history_spec.rb                            |   15 +
 spec/pry_output_spec.rb                            |   95 +++
 test/test_pry.rb => spec/pry_spec.rb               |  171 ++--
 spec/run_command_spec.rb                           |   25 +
 spec/sticky_locals_spec.rb                         |  157 ++++
 spec/syntax_checking_spec.rb                       |   81 ++
 spec/wrapped_module_spec.rb                        |  261 +++++++
 test/helper.rb                                     |  177 -----
 test/test_command.rb                               |  343 --------
 test/test_command_helpers.rb                       |    9 -
 test/test_command_integration.rb                   |  512 ------------
 test/test_completion.rb                            |   26 -
 test/test_default_commands.rb                      |   58 --
 test/test_default_commands/test_context.rb         |  270 -------
 test/test_default_commands/test_documentation.rb   |   66 --
 test/test_default_commands/test_gems.rb            |   18 -
 test/test_default_commands/test_input.rb           |  405 ----------
 test/test_default_commands/test_introspection.rb   |  630 ---------------
 test/test_default_commands/test_ls.rb              |  127 ---
 test/test_default_commands/test_shell.rb           |  340 --------
 test/test_pry_output.rb                            |   41 -
 test/test_special_locals.rb                        |   35 -
 test/test_syntax_checking.rb                       |   63 --
 test/test_wrapped_module.rb                        |   71 --
 205 files changed, 16297 insertions(+), 6939 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