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 brower is a specific version.
Instance Method Details
- (Boolean) accepts?(langs = [])
Check if the browser accepts the specified languages.
708 709 710 |
# File 'lib/brauser/browser.rb', line 708 def accepts?(langs = []) self.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.
684 685 686 |
# File 'lib/brauser/browser.rb', line 684 def is?(names = [], versions = {}, platforms = []) self.is(names, versions, platforms).result end |
- (Boolean) on?(platforms = [])
Check if the browser is on a specific platform.
700 701 702 |
# File 'lib/brauser/browser.rb', line 700 def on?(platforms = []) self.on(platforms).result end |
- (Boolean) v?(versions = {})
Checks if the brower is a specific version.
692 693 694 |
# File 'lib/brauser/browser.rb', line 692 def v?(versions = {}) self.v(versions).result end |