[DRE-commits] [ruby-byebug] branch master updated (afe3f30 -> 4b9cd15)

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 change to branch master
in repository ruby-byebug.

      from  afe3f30   Bump Standards-Version to 3.9.7 (no changes needed)
      adds  5f7abec   New upstream version 9.1.0
       new  4e60a4d   Updated version 9.1.0 from 'upstream/9.1.0'
       new  6e43c9b   debian/changelog: new upstream release
       new  176d631   Remove debian/test directory, contains only unused example files
       new  03cad61   debian/rules: check dependencies during build
       new  0bf6784   Update Debian packaging copyright
       new  b7be05d   debian/copyright: use https:// instead of http:// in Format field
       new  988a820   Bump debhelper compatibility level to 10
       new  2567494   Declare compliance with Debian Policy 4.1.0
       new  2ce41c8   Add myself to Uploaders list
       new  4b9cd15   release to unstable

The 10 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:
 CHANGELOG.md                                       | 833 +++++++++++++++------
 CONTRIBUTING.md                                    |  69 +-
 GUIDE.md                                           | 542 ++++++--------
 README.md                                          | 122 +--
 bin/byebug                                         |   4 +
 byebug.gemspec                                     |  37 +
 debian/changelog                                   |  20 +
 debian/compat                                      |   2 +-
 debian/control                                     |   7 +-
 debian/copyright                                   |   3 +-
 debian/rules                                       |   2 +-
 debian/tests/control.ex                            |  13 -
 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 ------
 137 files changed, 3922 insertions(+), 3086 deletions(-)
 create mode 100644 byebug.gemspec
 delete mode 100644 debian/tests/control.ex
 create mode 100644 lib/byebug/command_list.rb
 create mode 100644 lib/byebug/commands.rb
 create mode 100644 lib/byebug/commands/debug.rb
 delete mode 100644 lib/byebug/commands/eval.rb
 delete mode 100644 lib/byebug/commands/info/args.rb
 delete mode 100644 lib/byebug/commands/info/catch.rb
 delete mode 100644 lib/byebug/commands/pp.rb
 delete mode 100644 lib/byebug/commands/ps.rb
 delete mode 100644 lib/byebug/commands/putl.rb
 create mode 100644 lib/byebug/commands/var/args.rb
 create mode 100644 lib/byebug/errors.rb
 create mode 100644 lib/byebug/frame.rb
 create mode 100644 lib/byebug/helpers/bin.rb
 create mode 100644 lib/byebug/helpers/path.rb
 create mode 100644 lib/byebug/helpers/reflection.rb
 create mode 100644 lib/byebug/option_setter.rb
 delete mode 100644 lib/byebug/processor.rb
 delete mode 100644 lib/byebug/processors/control_command_processor.rb
 create mode 100644 lib/byebug/processors/control_processor.rb
 create mode 100644 lib/byebug/processors/post_mortem_processor.rb
 create mode 100644 lib/byebug/processors/script_processor.rb
 delete mode 100644 lib/byebug/settings/autoeval.rb
 create mode 100644 lib/byebug/settings/autopry.rb
 delete mode 100644 lib/byebug/settings/verbose.rb
 delete mode 100644 lib/byebug/state.rb
 delete mode 100644 lib/byebug/states/control_state.rb
 delete mode 100644 lib/byebug/states/regular_state.rb
 delete mode 100644 lib/byebug/subcommand_list.rb
 delete mode 100644 metadata.yml

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