├── .gitignore ├── .rspec ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib └── rspec │ ├── debug.rb │ └── debug │ └── version.rb ├── rspec-debug.gemspec ├── spec ├── rspec_debug_spec.rb └── spec_helper.rb └── test ├── rspec └── debug_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/rspec-debug/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/rspec-debug/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/rspec-debug/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/rspec-debug/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/rspec-debug/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/rspec-debug/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/rspec-debug/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/rspec/debug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/rspec-debug/HEAD/lib/rspec/debug.rb -------------------------------------------------------------------------------- /lib/rspec/debug/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/rspec-debug/HEAD/lib/rspec/debug/version.rb -------------------------------------------------------------------------------- /rspec-debug.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/rspec-debug/HEAD/rspec-debug.gemspec -------------------------------------------------------------------------------- /spec/rspec_debug_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/rspec-debug/HEAD/spec/rspec_debug_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/rspec-debug/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/rspec/debug_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/rspec-debug/HEAD/test/rspec/debug_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ko1/rspec-debug/HEAD/test/test_helper.rb --------------------------------------------------------------------------------