# File lib/rest.rb, line 375
  def method_missing symbol, *args
    if ( !@missing[ symbol ] )
      @missing[ symbol ] = true
      $stderr.puts "Warning: #{self.class} doesn't support '#{symbol}'."
    end
  end