lib/browser/device/iphone.rb



module Browser
  class Device
    class Iphone < Base
      def id
        :iphone
      end

      def name
        "iPhone"
      end

      def match?
        ua =~ /iPhone/
      end
    end
  end
end