mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9 lines
185 B
Ruby
9 lines
185 B
Ruby
module ENVSpecs
|
|
def self.encoding
|
|
locale = Encoding.find('locale')
|
|
if ruby_version_is '3' and platform_is :windows
|
|
locale = Encoding::UTF_8
|
|
end
|
|
locale
|
|
end
|
|
end
|