mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
a4c77f9bc4
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8464 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
15 lines
274 B
Ruby
15 lines
274 B
Ruby
module TestingSandbox
|
|
# Temporarily replaces KCODE for the block
|
|
def with_kcode(kcode)
|
|
if RUBY_VERSION < '1.9'
|
|
old_kcode, $KCODE = $KCODE, kcode
|
|
begin
|
|
yield
|
|
ensure
|
|
$KCODE = old_kcode
|
|
end
|
|
else
|
|
yield
|
|
end
|
|
end
|
|
end
|