module StringsFromApk

Constants

DATE
VERSION

Version and Date are defined on the 'Appium' module, not 'Appium::Common'

Public Class Methods

add_to_path(file, path=false) click to toggle source
# File lib/strings_from_apk.rb, line 2
def self.add_to_path file, path=false
 path = path ? "../#{path}/" : '..'
 path = File.expand_path path, file

 $:.unshift path unless $:.include? path
end