class Github::API
def method_missing(method, *args, &block)
def method_missing(method, *args, &block) if method.to_s =~ /^(.*)\?$/ return !self.send($1.to_s).nil? else super end end
def method_missing(method, *args, &block) if method.to_s =~ /^(.*)\?$/ return !self.send($1.to_s).nil? else super end end