# File lib/aeolus_cli/command/list_command.rb, line 22 def images begin headers = ActiveSupport::OrderedHash.new headers[:id] = "ID" headers[:name] = "Name" headers[:os] = "OS" headers[:os_version] = "OS Version" headers[:arch] = "Arch" headers[:description] = "Description" print_collection(Aeolus::CLI::Image.all, headers) quit(0) rescue => e handle_exception(e) end end