Module: Brauser::BrowserMethods::Querying

Included in:
Brauser::Browser
Defined in:
lib/brauser/browser.rb

Overview

Methods to end querying.

Instance Method Summary collapse

Instance Method Details

#accepts?(langs = []) ⇒ Boolean

Check if the browser accepts the specified languages.

Parameters:

  • langs (String|Array) (defaults to: [])

    A list of languages to match against.

Returns:

  • (Boolean)

    true if current browser matches, false otherwise.



634
635
636
# File 'lib/brauser/browser.rb', line 634

def accepts?(langs = [])
  accepts(langs).result
end

#is?(names = [], versions = {}, platforms = []) ⇒ Boolean

Checks if the browser is a specific name and optionally of a specific version and platform.

Parameters:

  • names (Symbol|Array) (defaults to: [])

    A list of specific names to match. Also, this meta-names are supported: :capable and :tablet.

  • versions (Hash) (defaults to: {})

    An hash with specific version to match against. Need to be in form {:operator => version}, where operator is one of :lt, :lte, :eq, :gt, :gte.

  • platforms (Symbol|Array) (defaults to: [])

    A list of specific platform to match. Valid values are all those possible for the platform attribute.

Returns:

  • (Boolean)

    true if current browser matches, false otherwise.

See Also:



610
611
612
# File 'lib/brauser/browser.rb', line 610

def is?(names = [], versions = {}, platforms = [])
  is(names, versions, platforms).result
end

#on?(platforms = []) ⇒ Boolean

Check if the browser is on a specific platform.

Parameters:

  • platforms (Symbol|Array) (defaults to: [])

    A list of specific platform to match.

Returns:

  • (Boolean)

    true if current browser matches, false otherwise.



626
627
628
# File 'lib/brauser/browser.rb', line 626

def on?(platforms = [])
  on(platforms).result
end

#v?(versions = {}) ⇒ Boolean

Checks if the browser is a specific version.

Parameters:

  • versions (String|Hash) (defaults to: {})

    A string in the form operator version && ... (example: >= 7 && < 4) or an hash with specific version to match against, in form {:operator => version}, where operator is one of :lt, :lte, :eq, :gt, :gte.

Returns:

  • (Boolean)

    true if current browser matches, false otherwise.



618
619
620
# File 'lib/brauser/browser.rb', line 618

def v?(versions = {})
  v(versions).result
end