Foreman works as a security guard with color output

I can start security from my master profile, but the result is not as bright as we would like. The only color that I see in my output is from Foreman ...

I want to have a protective file that controls rspec, cucumber and jasmine. And they have a good color when these tests are performed.

It would seem that if the wizard ignores the settings of the protection file. Any idea how to change this?

+6
source share
2 answers

Add the -tty option to your rspec guard cli:

guard "rspec", :version => 2, :cli => "--tty ...other options..." 
+12
source

For version 4.5.0 guard-rspec , the following worked for me

 guard :rspec, cmd_additional_args: "--tty", cmd: ...other... 
+2
source

Source: https://habr.com/ru/post/907733/


All Articles