How do you enable verbose output from command line?

Using this command our specs run with the dot-dot-dot output:

jruby -X-C -S rake spec SPEC=spec/models/trip_spec.rb

But how do we make the output verbose? (To see each spec description)

Many thanks,
George

On Aug 20, 2010, at 3:36 AM, George wrote:

Using this command our specs run with the dot-dot-dot output:

jruby -X-C -S rake spec SPEC=spec/models/trip_spec.rb

But how do we make the output verbose? (To see each spec description)

RSpec-1: in …/spec/spec.opts:

–format nested

RSpec-2: in ./.rspec

–format documentation

HTH,
David

That did it, thanks David.