Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save civitaspo/6977c4f256c79e5cf97dba6cb1865dec to your computer and use it in GitHub Desktop.
Save civitaspo/6977c4f256c79e5cf97dba6cb1865dec to your computer and use it in GitHub Desktop.
if `frozen_string_literal: true` is before `encoding: cp932`, `encoding: cp932` doesn't work.
# encoding: cp932
# frozen_string_literal: true
p "aaa".encoding
# frozen_string_literal: true
# encoding: cp932
p "aaa".encoding
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment