class Github::ResponseWrapper

def respond_to?(method_name)


Check if method is defined on the body
def respond_to?(method_name)
  if self.has_key?(method_name.to_s)
    true
  else
    super
  end
end