class Alki::Execution::CacheEntry

Public Class Methods

building() click to toggle source
# File lib/alki/execution/cache_entry.rb, line 6
def self.building
  new nil, nil, :building
end
finished(type,value) click to toggle source
# File lib/alki/execution/cache_entry.rb, line 10
def self.finished(type,value)
  new type, value, :done
end