rspec help rspec
$ rspec --help Usage: rspec [options] [files or directories] -f, --format FORMATTER Choose a formatter [p]rogress (default - dots) [d]ocumentation (group and example names) [h]tml [t]extmate custom formatter class name
Pass the -f option. Instead
$ rake rspec
run
$ rspec spec --format d
or short format:
$ rspec -fd
If you want the configuration to be permanent, create a .rspec file in the root directory of your project and write the configuration there.
Simone Carletti Feb 22 '11 at 20:51 2011-02-22 20:51
source share