Top Level Namespace
Defined Under Namespace
Modules: Greenlight
Classes: Colors, Console, Injector
Instance Method Summary
collapse
Instance Method Details
#action(msg) ⇒ Object
82
83
84
|
# File 'lib/greenlight/console.rb', line 82
def action(msg)
Console.instance.action(msg)
end
|
#error(msg) ⇒ Object
86
87
88
|
# File 'lib/greenlight/console.rb', line 86
def error(msg)
Console.instance.error(msg)
end
|
#failure ⇒ Object
159
160
161
162
|
# File 'lib/greenlight.rb', line 159
def failure
error 'TEST RUN FAILED'
abort
end
|
#greenlight(&block) ⇒ Object
#info(msg) ⇒ Object
78
79
80
|
# File 'lib/greenlight/console.rb', line 78
def info(msg)
Console.instance.info(msg)
end
|
#success(msg) ⇒ Object
90
91
92
|
# File 'lib/greenlight/console.rb', line 90
def success(msg)
Console.instance.success(msg)
end
|