├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── bin └── erase.rb └── lib ├── config.rb └── lib_trollop.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminjackson/shame-eraser/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminjackson/shame-eraser/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminjackson/shame-eraser/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminjackson/shame-eraser/HEAD/README.md -------------------------------------------------------------------------------- /bin/erase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminjackson/shame-eraser/HEAD/bin/erase.rb -------------------------------------------------------------------------------- /lib/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminjackson/shame-eraser/HEAD/lib/config.rb -------------------------------------------------------------------------------- /lib/lib_trollop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminjackson/shame-eraser/HEAD/lib/lib_trollop.rb --------------------------------------------------------------------------------