--- !ruby/object:Gem::Specification name: debugger2 version: !ruby/object:Gem::Version version: 1.0.0.beta1 platform: ruby authors: - Koichi Sasada - Zachary Scott - Kent Sibilev - Mark Moseley - Gabriel Horner autorequire: bindir: bin cert_chain: [] date: 2013-03-19 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: columnize requirement: !ruby/object:Gem::Requirement requirements: - - '>=' - !ruby/object:Gem::Version version: 0.3.1 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - '>=' - !ruby/object:Gem::Version version: 0.3.1 - !ruby/object:Gem::Dependency name: debugger-linecache requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 1.2.0 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 1.2.0 - !ruby/object:Gem::Dependency name: rake requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 0.9.2.2 type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 0.9.2.2 - !ruby/object:Gem::Dependency name: rake-compiler requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 0.8.0 type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 0.8.0 - !ruby/object:Gem::Dependency name: minitest requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 2.12.1 type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 2.12.1 - !ruby/object:Gem::Dependency name: mocha requirement: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 0.13.0 type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version version: 0.13.0 description: | debugger is a fast implementation of the standard Ruby debugger debug.rb. It is implemented by utilizing a new Ruby C API hook. The core component provides support that front-ends can build on. It provides breakpoint handling, bindings for stack frames among other things. email: ko1@atdot.net executables: - rdebug extensions: - ext/ruby_debug/extconf.rb extra_rdoc_files: - README.md files: - .gitignore - .travis.yml - AUTHORS - CHANGELOG.md - CONTRIBUTING.md - Gemfile - LICENSE - OLDER_CHANGELOG - OLD_CHANGELOG - OLD_README - README.md - Rakefile - bin/rdebug - debugger2.gemspec - doc/.cvsignore - doc/Makefile.am - doc/emacs-notes.txt - doc/hanoi.rb - doc/primes.rb - doc/rdebug-emacs.texi - doc/ruby-debug.texi - doc/test-tri2.rb - doc/tri3.rb - doc/triangle.rb - emacs/Makefile.am - emacs/rdebug-annotate.el - emacs/rdebug-breaks.el - emacs/rdebug-cmd.el - emacs/rdebug-core.el - emacs/rdebug-dbg.el - emacs/rdebug-error.el - emacs/rdebug-fns.el - emacs/rdebug-frames.el - emacs/rdebug-gud.el - emacs/rdebug-help.el - emacs/rdebug-info.el - emacs/rdebug-layouts.el - emacs/rdebug-locring.el - emacs/rdebug-output.el - emacs/rdebug-regexp.el - emacs/rdebug-secondary.el - emacs/rdebug-shortkey.el - emacs/rdebug-source.el - emacs/rdebug-track.el - emacs/rdebug-varbuf.el - emacs/rdebug-vars.el - emacs/rdebug-watch.el - emacs/rdebug.el - emacs/test/elk-test.el - emacs/test/test-annotate.el - emacs/test/test-cmd.el - emacs/test/test-core.el - emacs/test/test-fns.el - emacs/test/test-frames.el - emacs/test/test-gud.el - emacs/test/test-indent.el - emacs/test/test-regexp.el - emacs/test/test-shortkey.el - ext/ruby_debug/breakpoint.c - ext/ruby_debug/extconf.rb - ext/ruby_debug/ruby_debug.c - ext/ruby_debug/ruby_debug.h - lib/debugger.rb - lib/debugger/version.rb - lib/debugger2.rb - lib/ruby-debug-base.rb - lib/ruby-debug.rb - lib/ruby-debug/command.rb - lib/ruby-debug/commands/breakpoints.rb - lib/ruby-debug/commands/catchpoint.rb - lib/ruby-debug/commands/condition.rb - lib/ruby-debug/commands/continue.rb - lib/ruby-debug/commands/control.rb - lib/ruby-debug/commands/display.rb - lib/ruby-debug/commands/edit.rb - lib/ruby-debug/commands/enable.rb - lib/ruby-debug/commands/eval.rb - lib/ruby-debug/commands/finish.rb - lib/ruby-debug/commands/frame.rb - lib/ruby-debug/commands/help.rb - lib/ruby-debug/commands/info.rb - lib/ruby-debug/commands/irb.rb - lib/ruby-debug/commands/jump.rb - lib/ruby-debug/commands/kill.rb - lib/ruby-debug/commands/list.rb - lib/ruby-debug/commands/method.rb - lib/ruby-debug/commands/quit.rb - lib/ruby-debug/commands/reload.rb - lib/ruby-debug/commands/save.rb - lib/ruby-debug/commands/set.rb - lib/ruby-debug/commands/show.rb - lib/ruby-debug/commands/skip.rb - lib/ruby-debug/commands/source.rb - lib/ruby-debug/commands/stepping.rb - lib/ruby-debug/commands/threads.rb - lib/ruby-debug/commands/tmate.rb - lib/ruby-debug/commands/trace.rb - lib/ruby-debug/commands/variables.rb - lib/ruby-debug/debugger.rb - lib/ruby-debug/helper.rb - lib/ruby-debug/interface.rb - lib/ruby-debug/processor.rb - man/rdebug.1 - old_scripts/Makefile.am - old_scripts/README.md - old_scripts/autogen.sh - old_scripts/configure.ac - old_scripts/rdbg.rb - old_scripts/runner.sh - old_scripts/svn2cl_usermap - test/.cvsignore - test/breakpoints_test.rb - test/conditions_test.rb - test/continue_test.rb - test/display_test.rb - test/edit_test.rb - test/eval_test.rb - test/examples/breakpoint1.rb - test/examples/breakpoint2.rb - test/examples/conditions.rb - test/examples/continue.rb - test/examples/display.rb - test/examples/edit.rb - test/examples/edit2.rb - test/examples/eval.rb - test/examples/finish.rb - test/examples/frame.rb - test/examples/help.rb - test/examples/info.rb - test/examples/info2.rb - test/examples/irb.rb - test/examples/jump.rb - test/examples/kill.rb - test/examples/list.rb - test/examples/method.rb - test/examples/post_mortem.rb - test/examples/quit.rb - test/examples/reload.rb - test/examples/restart.rb - test/examples/save.rb - test/examples/set.rb - test/examples/set_annotate.rb - test/examples/settings.rb - test/examples/show.rb - test/examples/source.rb - test/examples/stepping.rb - test/examples/thread.rb - test/examples/tmate.rb - test/examples/trace.rb - test/examples/trace_threads.rb - test/examples/variables.rb - test/finish_test.rb - test/frame_test.rb - test/help_test.rb - test/info_test.rb - test/irb_test.rb - test/jump_test.rb - test/kill_test.rb - test/list_test.rb - test/method_test.rb - test/post_mortem_test.rb - test/quit_test.rb - test/reload_test.rb - test/restart_test.rb - test/save_test.rb - test/set_test.rb - test/show_test.rb - test/source_test.rb - test/stepping_test.rb - test/support/breakpoint.rb - test/support/context.rb - test/support/matchers.rb - test/support/mocha_extensions.rb - test/support/processor.rb - test/support/test_dsl.rb - test/support/test_interface.rb - test/test_helper.rb - test/thread_test.rb - test/tmate_test.rb - test/trace_test.rb - test/variables_test.rb homepage: https://github.com/ko1/debugger2 licenses: - BSD metadata: {} post_install_message: rdoc_options: [] require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement requirements: - - '>=' - !ruby/object:Gem::Version version: '0' required_rubygems_version: !ruby/object:Gem::Requirement requirements: - - '>=' - !ruby/object:Gem::Version version: 1.3.6 requirements: [] rubyforge_project: rubygems_version: 2.0.0 signing_key: specification_version: 4 summary: Fast Ruby debugger - base + cli test_files: []