README.rdoc in rspec_spinner-1.1.1 vs README.rdoc in rspec_spinner-1.1.2

- old
+ new

@@ -1,57 +1,61 @@ -= rspec-spinner += rspec_spinner * http://github.com/nofxx/rspec-spinner -Adds an extra formatter that looks like this: +Adds extra formatters that looks like this: Foo::Error ...... SLOW SPEC: 10.0314 Foo should raise Bar PENDING SPEC: Foo should get Bar 891/1808: 49% |======================= | ETA: 00:00:21 - + Or this: 46% \ should get Bar ETA: 00:00:23 - -No dots and Fs, just what you need to know: FAILURES, PENDINGS and SLOW ones. +No dots and Fs, just what you need to know: FAILURES, PENDINGS and SLOW ones. -== INSTALL: - sudo gem install rspec_spinner +== Install + gem install rspec_spinner -== TO USE: +== Use + Require RspecSpinner on spec/spec_helper.rb: require 'spec' require 'rspec_spinner' ... - -Change your spec.opts --formatter to: - --formatter RspecSpinner::Bar - +Change your spec.opts --format to: + + --format RspecSpinner::Bar + or: - --formatter RspecSpinner::Spinner - - -Have fun! - + --format RspecSpinner::Spinner -== REQUIREMENTS: +Have fun! + + +== Requirements + +* rtui (http://github.com/nofxx/rtui) + +Works with: + * rspec (http://github.com/dchemlinksy/rspec) -* rtui (http://github.com/nofxx/rtui) +* ...Need to work in an agnostic version... -== LICENSE: +== License (The MIT License) Based on the Advanced Progress Bar by Nicholas A. Evans