jseifer (owner)

Revisions

gist: 91597 Download_button fork
public
Public Clone URL: git://gist.github.com/91597.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
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