require "apstrings/version" require 'colorize' module Apstrings require 'apstrings/reader' require 'apstrings/strings_parser' # Public def self.parse(file) file = Apstrings::read(file) StringsParser.new(file).parse_file end def self.read(file) Reader.read(file) end def self.check(path = File::expand_path("."), master = "zh-Hans") p "Checking files recursively for #{path} according to master strings file name : #{master}" end end