# File lib/archivist/archive.rb, line 19
    def respond_to?(method,include_private=false)
      if get_klass_instance_methods.include?(method.to_s)
        return true
      else
        super(method,include_private)
      end
    end