# File lib/rhc/output_helpers.rb, line 108
    def display_cart_properties(cart,properties)
      # We need to actually access the cart because it's not a simple hash
      properties = get_properties(cart,*properties.keys) do |prop|
        cart.property(:cart_data,prop)["value"]
      end

      say_table \
        "Properties",
        properties
    end