class Gitlab::FileResponse
def method_missing(name, *args, &block)
def method_missing(name, *args, &block) if @file.respond_to?(name) @file.send(name, *args, &block) else super end end
def method_missing(name, *args, &block) if @file.respond_to?(name) @file.send(name, *args, &block) else super end end