class Github::ResponseWrapper

def method_missing(method_name, *args, &block)


Coerce any method calls for body attributes
def method_missing(method_name, *args, &block)
  if self.has_key?(method_name.to_s)
    self.[](method_name, &block)
  else
    super
  end
end