Module: Brauser::Chainers

Included in:
Query
Defined in:
lib/brauser/query.rb

Overview

Methods to chain queries.

Instance Method Summary collapse

Instance Method Details

#accepts(langs = []) ⇒ Query

Check if the browser accepts the specified languages.

Parameters:

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

    A list of languages to match against.

Returns:

  • (Query)

    The query itself.



47
48
49
50
# File 'lib/brauser/query.rb', line 47

def accepts(langs = [])
  @result = accepts?(langs)
  self
end

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

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 any form that #v understands.

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

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

Returns:

  • (Query)

    The query itself.

See Also:

  • #version?
  • #on?


20
21
22
23
# File 'lib/brauser/query.rb', line 20

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

#on(platforms = []) ⇒ Query

Check if the browser is on a specific platform.

Parameters:

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

    A list of specific platform to match.

Returns:

  • (Query)

    The query itself.



38
39
40
41
# File 'lib/brauser/query.rb', line 38

def on(platforms = [])
  @result = on?(platforms)
  self
end

#v(versions = {}) ⇒ Query

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:

  • (Query)

    The query itself.



29
30
31
32
# File 'lib/brauser/query.rb', line 29

def v(versions = {})
  @result = v?(versions)
  self
end