class Github::API

def method_missing(method, *args, &block)

Responds to attribute query
def method_missing(method, *args, &block)
  if method.to_s =~ /^(.*)\?$/
    return !self.send($1.to_s).nil?
  else
    super
  end
end