# File lib/mongo_mapper/plugins/dumpable.rb, line 8
      def marshal_dump
        instance_variables.map(&:to_sym).inject({}) do |h, var|
          h[var] = instance_variable_get(var) unless DUMP_BLACKLIST.include?(var) or var.to_s.start_with?("@__")
          h
        end
      end