Class: Fuci::Server
- Inherits:
-
Object
- Object
- Fuci::Server
- Defined in:
- lib/fuci/server.rb
Instance Method Summary collapse
-
#build_status ⇒ Object
must return either of the following symbols: :red (failure), :yellow (errored), :green (passing).
-
#fetch_log ⇒ Object
must return a log as as string string with characters denoting ascii color removed.
Instance Method Details
#build_status ⇒ Object
must return either of the following symbols: :red (failure), :yellow (errored), :green (passing)
9 10 11 |
# File 'lib/fuci/server.rb', line 9 def build_status raise NotImplementedError end |
#fetch_log ⇒ Object
must return a log as as string string with characters denoting ascii color removed
15 16 17 |
# File 'lib/fuci/server.rb', line 15 def fetch_log raise NotImplementedError end |