railstutorial.org - rails tutorial: bundle exec rspec not found -
railstutorial.org - rails tutorial: bundle exec rspec not found -
i returning rails after time away , amazed of production/development back upwards has been added. i'm doing hartl tutorial seek larn new features, , i've run problem chapter 3.
in short, bundle exec rspec spec
gives me this:
bundler: command not found: rspec install missing gem executables `bundle install`
however, if bundle install --binstubs=bin
, bin/rspec spec
works fine.
fine, thought. i'll run stub, i'm running problems when seek set guard, same thing. fails bundle exec guard
, bin/guard
works fine.
except bin/guard
doesn't quite work fine. runs, error:
00:45:00 - info - guard::rspec running, rspec 2! 00:45:00 - info - running specs bin/guard: no such file or directory - bundle exec rspec --help 00:45:00 - info - guard::rspec running, rspec 2! 00:45:00 - info - running specs bin/guard: no such file or directory - bundle exec rspec --help 00:45:00 - info - guard watching @ '/users/gmadrid/dropbox/projects/sample_app' [1] guard(main)>
it looks it's failing find rspec in same way, guard giving me prompt, , guard apparently not doing it's supposed to.
any ideas? really bundler idea, doesn't appear working me. i've seen similar problem, none quite mine. scheme specs:
mac os x 10.7.5 ruby 1.9.3p385 (2013-02-06 revision 39114) [x86_64-darwin11.4.2] installed using homebrew.
thanks,
george
adding gem 'guard' in development this,
group :development gem 'guard' end
then bundle install solve it!
ruby-on-rails railstutorial.org
Comments
Post a Comment