├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE.MIT ├── README.md ├── Rakefile ├── examples ├── example.rb └── example2.rb ├── ext ├── extconf.rb ├── interception.c └── org │ └── pryrepl │ └── InterceptionEventHook.java ├── interception.gemspec ├── lib ├── cross_platform.rb └── interception.rb └── spec ├── interception_spec.rb └── spec_helpers.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/LICENSE.MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/Rakefile -------------------------------------------------------------------------------- /examples/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/examples/example.rb -------------------------------------------------------------------------------- /examples/example2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/examples/example2.rb -------------------------------------------------------------------------------- /ext/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/ext/extconf.rb -------------------------------------------------------------------------------- /ext/interception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/ext/interception.c -------------------------------------------------------------------------------- /ext/org/pryrepl/InterceptionEventHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/ext/org/pryrepl/InterceptionEventHook.java -------------------------------------------------------------------------------- /interception.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/interception.gemspec -------------------------------------------------------------------------------- /lib/cross_platform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/lib/cross_platform.rb -------------------------------------------------------------------------------- /lib/interception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/lib/interception.rb -------------------------------------------------------------------------------- /spec/interception_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/interception/HEAD/spec/interception_spec.rb -------------------------------------------------------------------------------- /spec/spec_helpers.rb: -------------------------------------------------------------------------------- 1 | require File.expand_path('../../lib/interception', __FILE__) 2 | --------------------------------------------------------------------------------