class Quke::Quke
The main Quke
class. It is not intended to be instantiated and instead just need to call its execute
method.
Attributes
config[RW]
Class level attribute which holds the instance of Quke::Configuration
used for the current execution of Quke
.
Public Class Methods
execute(args = [])
click to toggle source
The entry point for Quke
, it is the one call made by exe/quke
.
# File lib/quke.rb, line 29 def self.execute(args = []) cuke = CukeRunner.new(args) cuke.run end