Page 2 of 2

Re: RUBY Encoding format

Posted: Mon Aug 18, 2014 10:57 am
by JB_AU
Silly me :oops: I just remembered the inbox files are "plain text" , you should be able to work directly with them.

Re: RUBY Encoding format

Posted: Sat Aug 23, 2014 4:40 pm
by Walter Sommerfeld
Encoding: (in method 'event')::ConverterNotFoundError: code converter not found (ASCII-8BIT to UTF-8)

have this prob in my actual ruby file finder:

#Encoding.name_list
#=> ["ASCII-8BIT", "UTF-8", "US-ASCII". "external", "filesystem"]

Encoding.default_external = "UTF-8" if defined? Encoding
...code


Reason: Filename has a "-" with ascii code 150 instead of 45... :(

Will i have to change all the filenames or is there a workaround???

Walter