Flowdock
method

translate_file

Importance_0
1.1.4 - Show latest stable - 0 notes - Class: Spec::Translator
translate_file(from, to) public

No documentation

This method has no description. You can help the RSpec community by adding new notes.

Hide source
# 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
Register or log in to add new notes.