Sha256: 0045c4abbbd168581ef137da1b0d9f98a8aa32cbc3b4331d6ce7cc9e2990efd0

Contents?: true

Size: 259 Bytes

Versions: 5

Compression:

Stored size: 259 Bytes

Contents

# frozen_string_literal: true

module Browser
  class Device
    class PlayStation3 < Base
      def id
        :ps3
      end

      def name
        "PlayStation 3"
      end

      def match?
        ua.match?(/PLAYSTATION 3/i)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
browser-6.1.0 lib/browser/device/playstation3.rb
browser-6.0.0 lib/browser/device/playstation3.rb
browser-5.3.1 lib/browser/device/playstation3.rb
browser-5.3.0 lib/browser/device/playstation3.rb
browser-5.2.0 lib/browser/device/playstation3.rb