Class: Fuci::Server

Inherits:
Object
  • Object
show all
Defined in:
lib/fuci/server.rb

Instance Method Summary collapse

Instance Method Details

#build_statusObject

must return either of the following symbols: :red (failure), :yellow (errored), :green (passing)

Raises:

  • (NotImplementedError)


9
10
11
# File 'lib/fuci/server.rb', line 9

def build_status
  raise NotImplementedError
end

#fetch_logObject

must return a log as as string string with characters denoting ascii color removed

Raises:

  • (NotImplementedError)


15
16
17
# File 'lib/fuci/server.rb', line 15

def fetch_log
  raise NotImplementedError
end