module Terrestrial::Cli::Parser

Public Class Methods

find_api_calls(file) click to toggle source
# File lib/terrestrial/cli/parser.rb, line 16
def self.find_api_calls(file)
  EngineMapper.parser_for(File.extname(file)).find_api_calls(file)
end
find_nslocalizedstrings(file) click to toggle source
# File lib/terrestrial/cli/parser.rb, line 20
def self.find_nslocalizedstrings(file)
  EngineMapper.parser_for(File.extname(file)).find_nslocalizedstrings(file)
end
find_strings(file) click to toggle source
# File lib/terrestrial/cli/parser.rb, line 12
def self.find_strings(file)
  EngineMapper.parser_for(File.extname(file)).find_strings(file)
end