Method: DopCommon::PlanStore#get_plan_hash_diff

Defined in:
lib/dop_common/plan_store.rb

#get_plan_hash_diff(plan_name, old_version, new_version = :latest) ⇒ Object



139
140
141
142
143
# File 'lib/dop_common/plan_store.rb', line 139

def get_plan_hash_diff(plan_name, old_version, new_version = :latest)
  old_hash = get_plan_hash(plan_name, old_version)
  new_hash = get_plan_hash(plan_name, new_version)
  HashDiff.best_diff(old_hash, new_hash)
end