Method: Chef::CookbookVersion#display

Defined in:
lib/chef/cookbook_version.rb

#displayObject



468
469
470
471
472
473
474
475
476
# File 'lib/chef/cookbook_version.rb', line 468

def display
  output = Mash.new
  output["cookbook_name"] = name
  output["name"] = full_name
  output["frozen?"] = frozen_version?
  output["metadata"] = .to_h
  output["version"] = version
  output.merge(cookbook_manifest.by_parent_directory)
end