class UserAgent::Browsers::PodcastAddict

def device_build

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