├── .gitignore ├── .rubocop.yml ├── LICENSE ├── README.md ├── debug-ception.png ├── git-remove-debug └── lib ├── git_diff_regexes.rb ├── lang_filenames.rb ├── matchers.rb ├── options.rb └── string_colors.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .byebug_history -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndbroadbent/git-remove-debug/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndbroadbent/git-remove-debug/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndbroadbent/git-remove-debug/HEAD/README.md -------------------------------------------------------------------------------- /debug-ception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndbroadbent/git-remove-debug/HEAD/debug-ception.png -------------------------------------------------------------------------------- /git-remove-debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndbroadbent/git-remove-debug/HEAD/git-remove-debug -------------------------------------------------------------------------------- /lib/git_diff_regexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndbroadbent/git-remove-debug/HEAD/lib/git_diff_regexes.rb -------------------------------------------------------------------------------- /lib/lang_filenames.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndbroadbent/git-remove-debug/HEAD/lib/lang_filenames.rb -------------------------------------------------------------------------------- /lib/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndbroadbent/git-remove-debug/HEAD/lib/matchers.rb -------------------------------------------------------------------------------- /lib/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndbroadbent/git-remove-debug/HEAD/lib/options.rb -------------------------------------------------------------------------------- /lib/string_colors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndbroadbent/git-remove-debug/HEAD/lib/string_colors.rb --------------------------------------------------------------------------------