class ChefCLI::CookbookProfiler::Identifiers

def dotted_decimal_identifier

def dotted_decimal_identifier
  hex_id = content_identifier
  major = hex_id[0...14]
  minor = hex_id[14...28]
  patch = hex_id[28..40]
  decimal_integers = [major, minor, patch].map { |hex| hex.to_i(16) }
  decimal_integers.join(".")
end