Sha256: af8b43d5a72eb0f3477fc98051ec21e55b2fcd7b235e528ba7cf7b4449992735
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
require './lib/adapters/adapter' require 'rainbow' module MatrixCi class Build def initialize(options) @id = options[:id] @branch = options[:branch] @committer = options[:committer] @started = options[:started] @ended = options[:ended] @outcome = options[:outcome] @subject = options[:subject] @ref = options[:ref] @projectname = options[:projectname] end def to_s str = "%s %10s %10s %40s %25s %15s %s" % [@id, @started.nil? ? "?" : @started[11,8], @projectname, @branch, @committer, @ref, @subject] color = :white if running? color = :yellow else color = :green if successful? color = :red unless successful? end str.foreground(color) end def successful? @outcome != "failed" end def running? @ended.nil? end def runtime (DateTime.parse(@ended) - DateTime.parse(@started)).to_i/60 end def cancel end def retry end def show end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
matrixci-0.0.2 | lib/build.rb |