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
|
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?
Thanks in advance
| ||||
|
feedback
|
|
Try change the path to I wrote a post on Sublime Text Build Scripts which should show you how to do this. | |||||
feedback
|
|
This is most likely due to using RVM. What is the output of
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. | |||
|
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:
From the command line I ran
After some digging, I read that In order to use the executible outside the app, I had to delete the gem installed by bundler and then install it manually.
followed by
This had to be performed for each version of ruby I have under rbenv control. Now when I run
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 | ||||
|
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:
to
It really depends on the location where you have your rspec executable file... | |||
|
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
Add the path to my .bashrc and source it
Open the sublime project from the command line (so that PATH is available in Sublime Text 2)
| |||
|
feedback
|