We're having issues with the character "ä" when output to a file in a rake build. It's being passed to rake as part of a string in a TeamCity environment variable. It's then output to a file with the following code:
output = File.new("#{path}", "w")
output.write("#{content}")
output.close
the character is output as "„". So we tried:
File.open("#{path}", "wt", encoding: 'UTF-8') do |f|
f.puts "#{content}"
end
and this results in the error
Encoding::UndefinedConversionError: "\x84" from ASCII-8BIT to UTF-8
A suggestion elsewhere was to use force_encoding like this:
f.force_encoding("UTF-8")
but this results in no character being output at all.
We need the character to be output correctly.