Sha256: 972cc6dd5279754e977bb1f2fbce8a9f5d4241779776ee446d559585051270e4
Contents?: true
Size: 372 Bytes
Versions: 42
Compression:
Stored size: 372 Bytes
Contents
module Builderator module Util ## # Generic wrapper for exceptions in Thor Tasks ## class TaskException < StandardError attr_reader :task def initialize(status, task, color = :red) @status = status @task = task @color = color end def status [@status, message, @color] end end end end
Version data entries
42 entries across 42 versions & 1 rubygems