lib/bruno/converter.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Bruno
  class Converter
    def self.convert(in_path, out_path)
      I18nFile.read(in_path).write(out_path)
    end
  end
end