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

Class Method Details

.browserObject



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_optionsObject



20
21
22
# File 'lib/kinchan.rb', line 20

def self.browser_options
  @browser_options
end

.browser_options=(browser_options) ⇒ Object



24
25
26
# File 'lib/kinchan.rb', line 24

def self.browser_options=(browser_options)
  @browser_options = browser_options
end

.restore_defaultsObject



28
29
30
31
# File 'lib/kinchan.rb', line 28

def self.restore_defaults
  @browser = :chrome
  @browser_options = nil
end