class BlinkSpec::BlinkColor

Wrap color definitions

Public Class Methods

error() click to toggle source
# File lib/blinkcolor.rb, line 20
def self.error
  '0,0,255'
end
fail() click to toggle source
# File lib/blinkcolor.rb, line 4
def self.fail
  '255,0,0'
end
pending() click to toggle source
# File lib/blinkcolor.rb, line 12
def self.pending
  '255,255,0'
end
running() click to toggle source
# File lib/blinkcolor.rb, line 16
def self.running
  '255,255,255'
end
success() click to toggle source
# File lib/blinkcolor.rb, line 8
def self.success
  '0,255,0'
end