├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── pry-debugger.rb └── pry-debugger │ ├── base.rb │ ├── breakpoints.rb │ ├── cli.rb │ ├── commands.rb │ ├── processor.rb │ ├── pry_ext.rb │ ├── pry_remote_ext.rb │ └── version.rb └── pry-debugger.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixme/pry-debugger/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixme/pry-debugger/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixme/pry-debugger/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixme/pry-debugger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixme/pry-debugger/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env rake 2 | require "bundler/gem_tasks" 3 | -------------------------------------------------------------------------------- /lib/pry-debugger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixme/pry-debugger/HEAD/lib/pry-debugger.rb -------------------------------------------------------------------------------- /lib/pry-debugger/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixme/pry-debugger/HEAD/lib/pry-debugger/base.rb -------------------------------------------------------------------------------- /lib/pry-debugger/breakpoints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixme/pry-debugger/HEAD/lib/pry-debugger/breakpoints.rb -------------------------------------------------------------------------------- /lib/pry-debugger/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixme/pry-debugger/HEAD/lib/pry-debugger/cli.rb -------------------------------------------------------------------------------- /lib/pry-debugger/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixme/pry-debugger/HEAD/lib/pry-debugger/commands.rb -------------------------------------------------------------------------------- /lib/pry-debugger/processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixme/pry-debugger/HEAD/lib/pry-debugger/processor.rb -------------------------------------------------------------------------------- /lib/pry-debugger/pry_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixme/pry-debugger/HEAD/lib/pry-debugger/pry_ext.rb -------------------------------------------------------------------------------- /lib/pry-debugger/pry_remote_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixme/pry-debugger/HEAD/lib/pry-debugger/pry_remote_ext.rb -------------------------------------------------------------------------------- /lib/pry-debugger/version.rb: -------------------------------------------------------------------------------- 1 | module PryDebugger 2 | VERSION = '0.2.3' 3 | end 4 | -------------------------------------------------------------------------------- /pry-debugger.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixme/pry-debugger/HEAD/pry-debugger.gemspec --------------------------------------------------------------------------------