Module: Cappie
- Defined in:
- lib/cappie.rb,
lib/cappie/driver.rb,
lib/cappie/process.rb,
lib/cappie/version.rb
Defined Under Namespace
Classes: Driver, Process, ProcessExitedError
Constant Summary collapse
- VERSION =
'0.0.2'
Class Method Summary collapse
Class Method Details
.start(options) ⇒ Object
8 9 10 11 12 13 |
# File 'lib/cappie.rb', line 8 def self.start() host = .delete(:host) driver = .delete(:driver) || :selenium Process.new().start Driver.new(driver, host) end |