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?
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 installedmogrify
program in the system. But it's not true: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?