Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

invalid option: --autospec

/usr/local/bin/ruby -rrubygems -e "require 'redgreen'"  /usr/local/lib/ruby/gems/1.8/gems/rspec-1.3.0/bin/spec --autospec <files_here> -O spec/spec.opts

invalid option: --autospec
Test::Unit automatic runner.
Usage: -e [options] [-- untouched arguments]

which spec says "/usr/local/bin/spec"
which autospec says "/usr/local/bin/autospec"

/usr/local/bin/spec --help includes --autospec option in the list.

What am I missing here?

like image 546
Ram on Rails React Native Avatar asked Feb 24 '26 13:02

Ram on Rails React Native


1 Answers

I finally got some time during the weekend to look into this myself.

The problem is "require 'redgreen/autotest'" statement in .autotest file I keep my autotest configuration in ~/.autotest

Comment that row and "autospec", "autotest", and "cucumber" works ok.

like image 182
Ram on Rails React Native Avatar answered Feb 27 '26 04:02

Ram on Rails React Native