fnando/browser

View on GitHub
lib/browser/platform/base.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Browser
  class Platform
    class Base
      attr_reader :ua, :platform

      def initialize(ua, platform = nil)
        @ua = ua
        @platform = platform
      end

      def match?
        false
      end
    end
  end
end