class Github::ResponseWrapper

def respond_to?(method_name, include_all = false)


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