method

translate_file

rspec latest stable - Class: Spec::Translator

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (1.1.4) is shown here.

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