fnando/browser

View on GitHub
lib/browser/meta/mobile.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Browser
  module Meta
    class Mobile < Base
      def meta
        "mobile" if browser.device.mobile?
      end
    end
  end
end