Rspec.opts

Where can I find a list of the options and their usage and meanings for
the contents of this file?

Regards,


*** E-Mail is NOT a SECURE channel ***
James B. Byrne mailto:[email protected]
Harte & Lyne Limited http://www.harte-lyne.ca
9 Brockley Drive vox: +1 905 561 1241
Hamilton, Ontario fax: +1 905 561 0757
Canada L8E 3C3

On Sat, November 24, 2007 18:12, James B. Byrne wrote:

Where can I find a list of the options and their usage and meanings for
the contents of this file?

From here I guess…

./vendor/plugins/rspec/lib/spec/runner/option_parser.rb


*** E-Mail is NOT a SECURE channel ***
James B. Byrne mailto:[email protected]
Harte & Lyne Limited http://www.harte-lyne.ca
9 Brockley Drive vox: +1 905 561 1241
Hamilton, Ontario fax: +1 905 561 0757
Canada L8E 3C3

On Nov 24, 2007 5:16 PM, James B. Byrne [email protected] wrote:

On Sat, November 24, 2007 18:12, James B. Byrne wrote:

Where can I find a list of the options and their usage and meanings for
the contents of this file?

From here I guess…

./vendor/plugins/rspec/lib/spec/runner/option_parser.rb

Easier to just do this:

spec --help

On Sat, November 24, 2007 18:42, David C. wrote:

Easier to just do this:

spec --help

C:\var\RSpec\depot>spec --help
‘spec’ is not recognized as an internal or external command,
operable program or batch file.

C:\var\RSpec\depot>ruby script/spec --help # works better

Thanks,


*** E-Mail is NOT a SECURE channel ***
James B. Byrne mailto:[email protected]
Harte & Lyne Limited http://www.harte-lyne.ca
9 Brockley Drive vox: +1 905 561 1241
Hamilton, Ontario fax: +1 905 561 0757
Canada L8E 3C3

On Nov 24, 2007 9:56 PM, James B. Byrne [email protected] wrote:

C:\var\RSpec\depot>ruby script/spec --help # works better

That’s because you didn’t installed rspec as ‘gem’ beside as plugin:

gem install rspec

that will enable the ‘spec’ command for you.

HTH,


Luis L.
Multimedia systems

Leaders are made, they are not born. They are made by hard effort,
which is the price which all of us must pay to achieve any goal that
is worthwhile.
Vince Lombardi

On Nov 24, 2007, at 8:27 PM, Luis L. wrote:

operable program or batch file.

C:\var\RSpec\depot>ruby script/spec --help # works better

That’s because you didn’t installed rspec as ‘gem’ beside as plugin:

gem install rspec

that will enable the ‘spec’ command for you.

Although - watch out. The gem spec is different from the script/spec
(if you’re running on trunk). The options may also be different.

Scott