method
translate_file
rspec latest stable - Class:
Spec::Translator
translate_file(from, to)public
No documentation available.
# File lib/spec/translator.rb, line 24
def translate_file(from, to)
translation = ""
File.open(from) do |io|
io.each_line do |line|
translation << translate_line(line)
end
end
File.open(to, "w") do |io|
io.write(translation)
end
end