# File lib/culerity/persistent_delivery.rb, line 11
        def self.deliveries
          return [] unless File.exist?(DELIVERIES_PATH)
          File.open(DELIVERIES_PATH,'r') do |f| 
            Marshal.load(f)
          end
        end