# File lib/couch_potato/persistence.rb, line 62
    def initialize(attributes = {})
      if attributes
        @skip_dirty_tracking = true
        self.attributes = attributes
        @skip_dirty_tracking = false
      end
      yield self if block_given?
    end