Class: Object

Inherits:
BasicObject
Defined in:
lib/sunzi/core_ext.rb

Instance Method Summary collapse

Instance Method Details

#abort_with(text) ⇒ Object



2
3
4
# File 'lib/sunzi/core_ext.rb', line 2

def abort_with(text)
  abort text.color(:red).bright
end

#exit_with(text) ⇒ Object



6
7
8
9
# File 'lib/sunzi/core_ext.rb', line 6

def exit_with(text)
  puts text.color(:green).bright
  exit
end