Skip to content

Instantly share code, notes, and snippets.

@ttscoff
Created January 15, 2014 13:55
Show Gist options
  • Save ttscoff/8436660 to your computer and use it in GitHub Desktop.
Save ttscoff/8436660 to your computer and use it in GitHub Desktop.
Ruby 2.0 UTF8 stuff
if RUBY_VERSION.to_f > 1.9
Encoding.default_external = Encoding::UTF_8
Encoding.default_internal = Encoding::UTF_8
input = STDIN.read.force_encoding('utf-8')
else
input = STDIN.read
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment