class UserAgent::Browsers::PodcastAddict

def device

Returns:
  • (nil, String) - the device model
def device
  return nil unless length >= 4
  return nil unless self[3].comment.last.include?(' Build/')
  self[3].comment.last.split(' Build/').first
end