This method is deprecated or moved on the latest stable version.
The last existing version (v2.3.8) is shown here.
call(env)
public
No documentation available.
# File railties/lib/rails/rack/metal.rb, line 42
def call(env)
@metals.keys.each do |app|
result = app.call(env)
return result unless result[0].to_i == 404
end
@app.call(env)
end