I get the following error when running a project with:
cucumber --format junit --guess --out ./
This is the error:
Checkout
There are issues with your environments LC encodings.
export LANG=en_US.UTF-8
export LC_CTYPE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
The problem can be also fixed in Ruby code it-self, by adding the following code:
Encoding.default_external = Encoding::UTF_8
Encoding.default_internal = Encoding::UTF_8