├── .gemtest ├── .gitignore ├── .travis.yml ├── .yardopts ├── CHANGELOG ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── examples ├── example_c_inline.rb ├── example_inline.rb └── example_wrap.rb ├── lib ├── pry-exception_explorer.rb └── pry-exception_explorer │ ├── cli.rb │ ├── commands.rb │ ├── core_ext.rb │ ├── intercept.rb │ ├── lazy_frame.rb │ └── version.rb ├── pry-exception_explorer.gemspec └── test ├── helper.rb ├── test_exceptions_in_pry.rb ├── test_inline_exceptions.rb ├── test_raise.rb └── test_wrapped_exceptions.rb /.gemtest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/Rakefile -------------------------------------------------------------------------------- /examples/example_c_inline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/examples/example_c_inline.rb -------------------------------------------------------------------------------- /examples/example_inline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/examples/example_inline.rb -------------------------------------------------------------------------------- /examples/example_wrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/examples/example_wrap.rb -------------------------------------------------------------------------------- /lib/pry-exception_explorer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/lib/pry-exception_explorer.rb -------------------------------------------------------------------------------- /lib/pry-exception_explorer/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/lib/pry-exception_explorer/cli.rb -------------------------------------------------------------------------------- /lib/pry-exception_explorer/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/lib/pry-exception_explorer/commands.rb -------------------------------------------------------------------------------- /lib/pry-exception_explorer/core_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/lib/pry-exception_explorer/core_ext.rb -------------------------------------------------------------------------------- /lib/pry-exception_explorer/intercept.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/lib/pry-exception_explorer/intercept.rb -------------------------------------------------------------------------------- /lib/pry-exception_explorer/lazy_frame.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/lib/pry-exception_explorer/lazy_frame.rb -------------------------------------------------------------------------------- /lib/pry-exception_explorer/version.rb: -------------------------------------------------------------------------------- 1 | module PryExceptionExplorer 2 | VERSION = "0.2.3" 3 | end 4 | -------------------------------------------------------------------------------- /pry-exception_explorer.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/pry-exception_explorer.gemspec -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/test_exceptions_in_pry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/test/test_exceptions_in_pry.rb -------------------------------------------------------------------------------- /test/test_inline_exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/test/test_inline_exceptions.rb -------------------------------------------------------------------------------- /test/test_raise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/test/test_raise.rb -------------------------------------------------------------------------------- /test/test_wrapped_exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pry/pry-exception_explorer/HEAD/test/test_wrapped_exceptions.rb --------------------------------------------------------------------------------