Skip to content

Instantly share code, notes, and snippets.

@jonnii
Created September 14, 2013 20:33
Show Gist options
  • Save jonnii/6565416 to your computer and use it in GitHub Desktop.
Save jonnii/6565416 to your computer and use it in GitHub Desktop.
module Middleware
# this class cheats and bypasses rails altogether if the client attempts
# to download a static asset
class TurboDev
def initialize(app, settings={})
@app = app
end
def call(env)
# hack to bypass all middleware if serving assets, a lot faster 4.5 seconds -> 1.5 seconds
if (etag = env['HTTP_IF_NONE_MATCH']) && env['REQUEST_PATH'] =~ /^\/assets\//
name = $'
etag = etag.gsub "\"", ""
asset = Rails.application.assets.find_asset(name)
if asset && asset.digest == etag
return [304,{},[]]
end
end
@app.call(env)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment