I have a hash of mixed types:
stuff = {:pack_one => ["blue_item", "red_item"], :pack_two => [:green_item, :purple_item, :yellow_item]}
And I need to convert that into a sentence like:
"pack_one contains a blue_item and red_item and pack_two contains a green_item, purple_item and yellow_item"
So I assume I need to use Enumerable and iterate over the hash and build the sentence, but I am not sure how?