toshimaru/rack-simple_user_agent

View on GitHub
lib/rack/simple_user_agent/detectors/windows_phone.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module Rack
  class SimpleUserAgent
    module Detectors
      module WindowsPhone
        def from_windows_phone?
          user_agent_string.include?('Windows Phone')
        end
      end
    end
  end
end