Module: Brauser::BrowserMethods::Querying
- Included in:
- Brauser::Browser
- Defined in:
- lib/brauser/browser.rb
Overview
Methods to end querying.
Instance Method Summary (collapse)
-
- (Boolean) accepts?(langs = [])
Check if the browser accepts the specified languages.
-
- (Boolean) is?(names = [], versions = {}, platforms = [])
Checks if the browser is a specific name and optionally of a specific version and platform.
-
- (Boolean) on?(platforms = [])
Check if the browser is on a specific platform.
-
- (Boolean) v?(versions = {})
Checks if the browser is a specific version.
Instance Method Details
- (Boolean) accepts?(langs = [])
Check if the browser accepts the specified languages.
634 635 636 |
# File 'lib/brauser/browser.rb', line 634 def accepts?(langs = []) accepts(langs).result end |
- (Boolean) is?(names = [], versions = {}, platforms = [])
Checks if the browser is a specific name and optionally of a specific version and platform.
610 611 612 |
# File 'lib/brauser/browser.rb', line 610 def is?(names = [], versions = {}, platforms = []) is(names, versions, platforms).result end |
- (Boolean) on?(platforms = [])
Check if the browser is on a specific platform.
626 627 628 |
# File 'lib/brauser/browser.rb', line 626 def on?(platforms = []) on(platforms).result end |
- (Boolean) v?(versions = {})
Checks if the browser is a specific version.
618 619 620 |
# File 'lib/brauser/browser.rb', line 618 def v?(versions = {}) v(versions).result end |