Skip to content

Instantly share code, notes, and snippets.

@buzztaiki
Created June 8, 2012 15:40
Show Gist options
  • Select an option

  • Save buzztaiki/2896231 to your computer and use it in GitHub Desktop.

Select an option

Save buzztaiki/2896231 to your computer and use it in GitHub Desktop.
magic commentでdefault_externalがeuc-jpにならない
# coding: euc-jp
p __ENCODING__
p Encoding.default_external
@buzztaiki
Copy link
Copy Markdown
Author

run with no option:

$ ruby ./a.rb
#<Encoding:EUC-JP>
#<Encoding:UTF-8>

run with encoding option:

$ ruby --encoding euc-jp ./a.rb
#<Encoding:EUC-JP>
#<Encoding:EUC-JP>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment