I am trying to get RubyTest to work in Sublime Text 2. I followed the Instruction on the Github Readme and get the following error. Does anyone know how I could fix this?

/bin/sh: rspec: command not found

Thanks in advance

link|improve this question

feedback

5 Answers

up vote 1 down vote accepted

Try change the path to usr/local/bin/

I wrote a post on Sublime Text Build Scripts which should show you how to do this.

http://wesbos.com/sublime-text-build-scripts/

link|improve this answer
This doesn't really get rubytest running and loses the best part of rubytest which is the cmd-shift-e run last test command. – Chuck Vose Feb 21 at 20:44
thank you for posting this, it worked for me – chris hough Mar 27 at 3:30
feedback

This is most likely due to using RVM. What is the output of

which rspec

on your command line?

Also of note, just because you've included rspec-rails in a Gemfile, does not mean that 'rspec' is an executable program that your system knows about.

You can edit the RubyTest.sublime.settings to refer to your particular path to the rspec executable and it should work.

Unfortunately, this has the nasty side effect of being tied to one particular version of Ruby. If you're using RVM to switch between versions, you'll have to update your sublime.settings.

One work around, is to run Sublime from the command line.

link|improve this answer
feedback

Running Sublime Text 2(2165) with RubyTest plugin. Ruby and Gems managed with rbenv (0.3.0).

First attempt to use RubyTest gave the following error: /bin/sh: rspec: command not found

From the command line I ran which rspec and it returned no results.

After some digging, I read that bundle install does not put the executables in your $PATH. Alternative executable paths not picked up by shims sometimes

In order to use the executible outside the app, I had to delete the gem installed by bundler and then install it manually.

gem uninstall rspec

gem install rspec

followed by

rbenv rehash (Note you will need to run bundle inside your app so it updates the location of the gem)

This had to be performed for each version of ruby I have under rbenv control.

Now when I run

which rspec

it is found in the path and RubyTest is able to grab it without any problems.

fwiw, I had to repeat the steps for cucumber as well. To use all of RubyTests' features, ruby, cucumber and rspec executables need to be in your $PATH (for rbenv it is ~/.rbenv/shims/).

link|improve this answer
Excellent, worked perfectly! Thanks. – phatmann Mar 21 at 9:59
feedback

Same issue for me. With rspec 1.3.2 what I just did to fix it is to edit the RubyTest.sublime.settings file in the plugin folder, changing the "ruby_rspec_exec" key from:

"ruby_rspec_exec": "rspec"

to

"ruby_rspec_exec": "spec"

It really depends on the location where you have your rspec executable file...

link|improve this answer
feedback

You can see a summary of this issue here: https://github.com/maltize/sublime-text-2-ruby-tests/issues/36

Essentially, what Jim said was correct, you're running RVM or some other ruby vm manager that similarly monkeys with your PATH. Following the directions from this issue I did the following:

Install the binaries in my project

bundle install --binstubs

Add the path to my .bashrc and source it

echo 'export PATH="./bin:$PATH"' >> ~/.bashrc
source ~/.bashrc

Open the sublime project from the command line (so that PATH is available in Sublime Text 2)

subl .
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.