lib/kameleon/step.rb in kameleon-builder-2.10.10 vs lib/kameleon/step.rb in kameleon-builder-2.10.11
- old
+ new
@@ -101,16 +101,18 @@
class Microstep
attr_accessor :commands
attr_accessor :name
attr_accessor :identifier
attr_accessor :slug
- attr_accessor :in_cache
+ attr_accessor :has_checkpoint_ahead
+ attr_accessor :in_checkpoint_window
attr_accessor :on_checkpoint
attr_accessor :order
def initialize(string_or_hash)
@identifier = nil
- @in_cache = false
+ @has_checkpoint_ahead = false
+ @in_checkpoint_window = true
@on_checkpoint = "use_cache"
@commands = []
@name, cmd_list = string_or_hash.first
cmd_list.each do |cmd_hash|
if cmd_hash.kind_of? Command