Module: Autocuke
- Defined in:
- lib/autocuke.rb,
lib/autocuke/handler.rb,
lib/autocuke/runtime.rb,
lib/autocuke/version.rb
Defined Under Namespace
Modules: Handler
Classes: NoFileError, Runtime
Constant Summary
collapse
- VERSION =
"0.1.1"
Class Method Summary
collapse
Class Method Details
.active_runtime ⇒ Object
19
20
21
|
# File 'lib/autocuke.rb', line 19
def self.active_runtime
@active_runtime
end
|
.set_active_runtime(runtime) ⇒ Object
15
16
17
|
# File 'lib/autocuke.rb', line 15
def self.set_active_runtime(runtime)
@active_runtime = runtime
end
|
.start(options) ⇒ Object
10
11
12
13
|
# File 'lib/autocuke.rb', line 10
def self.start(options)
@active_runtime = Runtime.new(options)
@active_runtime.run!
end
|