maltize / sublime-text-2-ruby-tests

Sublime Text 2 plugin for running ruby tests! (Unit, RSpec, Cucumber)
721 stars 119 forks source link

ImageMagick is not visible when run RubyTest #253

Closed ka8725 closed 9 years ago

ka8725 commented 9 years ago

In my Ruby code I use minimagick (it runs mogrify command in some cases). But when I run tests via RubyTests it says that there is no installed mogrify program in the system. But it's not true:

which mogrify
/usr/local/bin/mogrify

Any ideas why programs which are in the /usr/local/bin folder are not visible when I run RubyTest? May be is there an option to make it work?

andypike commented 9 years ago

I had a similar problem, and using the following fixed it for me so worth a try:

https://github.com/int3h/SublimeFixMacPath

Hope that helps

Andy

ka8725 commented 9 years ago

Thanks, Andy. It works!