fnando/browser

View on GitHub
lib/browser/device/blackberry_playbook.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Browser
  class Device
    class BlackBerryPlaybook < Base
      def id
        :playbook
      end

      def name
        "BlackBerry Playbook"
      end

      def match?
        ua =~ /PlayBook.*?RIM Tablet/
      end
    end
  end
end