module MobileDevices
Public Instance Methods
get_name(short_name)
click to toggle source
# File mobile_devices.rb, line 13 def get_name(short_name) if short_name.start_with?('iP') MobileDevices::IOS.search(short_name) else MobileDevices::Android.search(short_name) end end