Module: Kinchan
- Defined in:
- lib/kinchan.rb,
lib/kinchan/version.rb
Overview
Top-level module contains all the juicy bits for the gem
Defined Under Namespace
Classes: Task
Constant Summary collapse
- VERSION =
'0.3.0'
Class Method Summary collapse
- .browser ⇒ Object
- .browser=(browser) ⇒ Object
- .browser_options ⇒ Object
- .browser_options=(browser_options) ⇒ Object
- .restore_defaults ⇒ Object
Class Method Details
.browser ⇒ Object
12 13 14 |
# File 'lib/kinchan.rb', line 12 def self.browser @browser end |
.browser=(browser) ⇒ Object
16 17 18 |
# File 'lib/kinchan.rb', line 16 def self.browser=(browser) @browser = browser end |
.browser_options ⇒ Object
20 21 22 |
# File 'lib/kinchan.rb', line 20 def self. @browser_options end |
.browser_options=(browser_options) ⇒ Object
24 25 26 |
# File 'lib/kinchan.rb', line 24 def self.() @browser_options = end |
.restore_defaults ⇒ Object
28 29 30 31 |
# File 'lib/kinchan.rb', line 28 def self.restore_defaults @browser = :chrome @browser_options = nil end |