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