[DRE-commits] [ruby-byebug] 01/10: Updated version 9.1.0 from 'upstream/9.1.0'

Lucas Kanashiro kanashiro at moszumanska.debian.org
Fri Sep 1 20:24:24 UTC 2017


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

kanashiro pushed a commit to branch master
in repository ruby-byebug.

commit 4e60a4d9304a471984605b2762c86710106b296c
Merge: afe3f30 5f7abec
Author: Lucas Kanashiro <kanashiro at debian.org>
Date:   Fri Sep 1 17:08:54 2017 -0300

    Updated version 9.1.0 from 'upstream/9.1.0'
    
    with Debian dir 35d947749fd7c2bac90eb44a68edc20cb98b0cc1

 CHANGELOG.md                                       | 833 +++++++++++++++------
 CONTRIBUTING.md                                    |  69 +-
 GUIDE.md                                           | 542 ++++++--------
 README.md                                          | 122 +--
 bin/byebug                                         |   4 +
 byebug.gemspec                                     |  37 +
 ext/byebug/breakpoint.c                            |  16 +-
 ext/byebug/byebug.c                                | 285 ++++---
 ext/byebug/byebug.h                                |  81 +-
 ext/byebug/context.c                               |  17 +-
 ext/byebug/extconf.rb                              |  10 -
 ext/byebug/locker.c                                |   4 +-
 ext/byebug/threads.c                               |  10 +-
 lib/byebug.rb                                      |   1 -
 lib/byebug/attacher.rb                             |   6 +-
 lib/byebug/breakpoint.rb                           |   8 +-
 lib/byebug/command.rb                              | 128 ++--
 lib/byebug/command_list.rb                         |  32 +
 lib/byebug/commands.rb                             |  37 +
 lib/byebug/commands/break.rb                       |  85 ++-
 lib/byebug/commands/catch.rb                       |  80 +-
 lib/byebug/commands/condition.rb                   |  32 +-
 lib/byebug/commands/continue.rb                    |  26 +-
 lib/byebug/commands/debug.rb                       |  36 +
 lib/byebug/commands/delete.rb                      |  36 +-
 lib/byebug/commands/disable.rb                     |  19 +-
 lib/byebug/commands/disable/breakpoints.rb         |  24 +-
 lib/byebug/commands/disable/display.rb             |  24 +-
 lib/byebug/commands/display.rb                     |  56 +-
 lib/byebug/commands/down.rb                        |  32 +-
 lib/byebug/commands/edit.rb                        |  70 +-
 lib/byebug/commands/enable.rb                      |  12 +-
 lib/byebug/commands/enable/breakpoints.rb          |  24 +-
 lib/byebug/commands/enable/display.rb              |  24 +-
 lib/byebug/commands/eval.rb                        |  43 --
 lib/byebug/commands/finish.rb                      |  39 +-
 lib/byebug/commands/frame.rb                       |  41 +-
 lib/byebug/commands/help.rb                        |  55 +-
 lib/byebug/commands/history.rb                     |  29 +-
 lib/byebug/commands/info.rb                        |  13 +-
 lib/byebug/commands/info/args.rb                   |  39 -
 lib/byebug/commands/info/breakpoints.rb            |  34 +-
 lib/byebug/commands/info/catch.rb                  |  39 -
 lib/byebug/commands/info/display.rb                |  36 +-
 lib/byebug/commands/info/file.rb                   |  51 +-
 lib/byebug/commands/info/line.rb                   |  24 +-
 lib/byebug/commands/info/program.rb                |  30 +-
 lib/byebug/commands/interrupt.rb                   |  24 +-
 lib/byebug/commands/irb.rb                         |  37 +-
 lib/byebug/commands/kill.rb                        |  32 +-
 lib/byebug/commands/list.rb                        |  75 +-
 lib/byebug/commands/method.rb                      |  40 +-
 lib/byebug/commands/next.rb                        |  28 +-
 lib/byebug/commands/pp.rb                          |  41 -
 lib/byebug/commands/pry.rb                         |  31 +-
 lib/byebug/commands/ps.rb                          |  44 --
 lib/byebug/commands/putl.rb                        |  43 --
 lib/byebug/commands/quit.rb                        |  28 +-
 lib/byebug/commands/restart.rb                     |  67 +-
 lib/byebug/commands/save.rb                        |  38 +-
 lib/byebug/commands/set.rb                         |  45 +-
 lib/byebug/commands/show.rb                        |  34 +-
 lib/byebug/commands/source.rb                      |  29 +-
 lib/byebug/commands/step.rb                        |  28 +-
 lib/byebug/commands/thread.rb                      |  12 +-
 lib/byebug/commands/thread/current.rb              |  22 +-
 lib/byebug/commands/thread/list.rb                 |  28 +-
 lib/byebug/commands/thread/resume.rb               |  28 +-
 lib/byebug/commands/thread/stop.rb                 |  28 +-
 lib/byebug/commands/thread/switch.rb               |  29 +-
 lib/byebug/commands/tracevar.rb                    |  36 +-
 lib/byebug/commands/undisplay.rb                   |  40 +-
 lib/byebug/commands/untracevar.rb                  |  24 +-
 lib/byebug/commands/up.rb                          |  32 +-
 lib/byebug/commands/var.rb                         |  13 +-
 lib/byebug/commands/var/all.rb                     |  28 +-
 lib/byebug/commands/var/args.rb                    |  37 +
 lib/byebug/commands/var/const.rb                   |  39 +-
 lib/byebug/commands/var/global.rb                  |  24 +-
 lib/byebug/commands/var/instance.rb                |  24 +-
 lib/byebug/commands/var/local.rb                   |  24 +-
 lib/byebug/commands/where.rb                       |  26 +-
 lib/byebug/context.rb                              | 157 ++--
 lib/byebug/core.rb                                 |  88 ++-
 lib/byebug/errors.rb                               |  27 +
 lib/byebug/frame.rb                                | 185 +++++
 lib/byebug/helpers/bin.rb                          |  26 +
 lib/byebug/helpers/eval.rb                         | 117 ++-
 lib/byebug/helpers/file.rb                         |  25 +-
 lib/byebug/helpers/frame.rb                        |  77 +-
 lib/byebug/helpers/parse.rb                        |  35 +-
 lib/byebug/helpers/path.rb                         |  38 +
 lib/byebug/helpers/reflection.rb                   |  17 +
 lib/byebug/helpers/string.rb                       |  12 +-
 lib/byebug/helpers/thread.rb                       |  72 +-
 lib/byebug/helpers/toggle.rb                       |  60 +-
 lib/byebug/helpers/var.rb                          |  39 +-
 lib/byebug/history.rb                              |  13 +-
 lib/byebug/interface.rb                            |  40 +-
 lib/byebug/interfaces/local_interface.rb           |  31 +-
 lib/byebug/interfaces/remote_interface.rb          |   2 +-
 lib/byebug/interfaces/script_interface.rb          |   7 +-
 lib/byebug/interfaces/test_interface.rb            |  19 +-
 lib/byebug/option_setter.rb                        |  93 +++
 lib/byebug/printers/base.rb                        |  17 +-
 lib/byebug/printers/plain.rb                       |  21 +-
 lib/byebug/printers/texts/base.yml                 |  13 +-
 lib/byebug/printers/texts/plain.yml                |   4 +-
 lib/byebug/processor.rb                            |  43 --
 lib/byebug/processors/command_processor.rb         | 208 ++---
 lib/byebug/processors/control_command_processor.rb |  48 --
 lib/byebug/processors/control_processor.rb         |  26 +
 lib/byebug/processors/post_mortem_processor.rb     |  16 +
 lib/byebug/processors/script_processor.rb          |  45 ++
 lib/byebug/remote.rb                               |  50 +-
 lib/byebug/runner.rb                               | 205 ++---
 lib/byebug/setting.rb                              |   7 +-
 lib/byebug/settings/autoeval.rb                    |  14 -
 lib/byebug/settings/autopry.rb                     |  27 +
 lib/byebug/settings/callstyle.rb                   |   4 +-
 lib/byebug/settings/histfile.rb                    |   4 +-
 lib/byebug/settings/post_mortem.rb                 |  16 -
 lib/byebug/settings/savefile.rb                    |   5 +-
 lib/byebug/settings/verbose.rb                     |  20 -
 lib/byebug/state.rb                                |  12 -
 lib/byebug/states/control_state.rb                 |  26 -
 lib/byebug/states/regular_state.rb                 | 187 -----
 lib/byebug/subcommand_list.rb                      |  33 -
 lib/byebug/subcommands.rb                          |  59 +-
 lib/byebug/version.rb                              |   7 +-
 metadata.yml                                       | 211 ------
 131 files changed, 3894 insertions(+), 3067 deletions(-)

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



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