fnando/browser

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Browser
  class Device
    class Xbox360 < Base
      def id
        :xbox_360
      end

      def name
        "Xbox 360"
      end

      def match?
        ua =~ /Xbox/i
      end
    end
  end
end