├── .appveyor.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── color_pound_spec_reporter.gemspec ├── example └── color-output.png ├── lib ├── color_pound_spec_reporter.rb └── color_pound_spec_reporter │ └── version.rb └── test ├── color_pound_spec_reporter_test.rb └── minitest_helper.rb /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpclark/color_pound_spec_reporter/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpclark/color_pound_spec_reporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.2.1 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpclark/color_pound_spec_reporter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpclark/color_pound_spec_reporter/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpclark/color_pound_spec_reporter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpclark/color_pound_spec_reporter/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpclark/color_pound_spec_reporter/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpclark/color_pound_spec_reporter/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpclark/color_pound_spec_reporter/HEAD/bin/setup -------------------------------------------------------------------------------- /color_pound_spec_reporter.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpclark/color_pound_spec_reporter/HEAD/color_pound_spec_reporter.gemspec -------------------------------------------------------------------------------- /example/color-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpclark/color_pound_spec_reporter/HEAD/example/color-output.png -------------------------------------------------------------------------------- /lib/color_pound_spec_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpclark/color_pound_spec_reporter/HEAD/lib/color_pound_spec_reporter.rb -------------------------------------------------------------------------------- /lib/color_pound_spec_reporter/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpclark/color_pound_spec_reporter/HEAD/lib/color_pound_spec_reporter/version.rb -------------------------------------------------------------------------------- /test/color_pound_spec_reporter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpclark/color_pound_spec_reporter/HEAD/test/color_pound_spec_reporter_test.rb -------------------------------------------------------------------------------- /test/minitest_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielpclark/color_pound_spec_reporter/HEAD/test/minitest_helper.rb --------------------------------------------------------------------------------