module Browser::Bots

def bot_name

def bot_name
  return unless bot?
  return "Generic Bot" if bot_with_empty_ua?
  BOTS.find {|key, _| ua.include?(key) }.first
end