class Github::API

def method_missing(method_name, *args, &block) # :nodoc:

Other tags:
    Api: - private
def method_missing(method_name, *args, &block) # :nodoc:
  case method_name.to_s
  when /^(.*)\?$/
    return !!send($1.to_s)
  when /^clear_(.*)$/
    send("#{$1.to_s}=", nil)
  else
    super
  end
end