RSPEC_PRETTY

"RSpec Pretty" contains two formatters for cleaner and prettier rspec logs

There were two inspirations for this project

FROGGER

Frogger Gem for cucumber logs [https://github.com/evolve2k/frogger]

PRETTY_TEST_

Pretty Test for minitest [https://github.com/bobes/pretty_test]

SETUP

GEMFILE

In your Gemfile:

gem 'rspec_pretty', '~> 0.0.1'

SPEC_HELPER

In spec/spec_helper.rb:

config.formatters << Pretty::Logger.new

.rspec

In .rspec

--format Pretty::Formatter

Guardfile

guard 'rspec', :version => 2, :cli => '--colour --format Pretty::Formatter', ...