Tag: assets

Daily Code Reading #9 – Rack::StaticFallback

Today I’m looking at another rack middleware from coderack.org called Rack::StaticFallback. This middleware is useful in development if you have users upload files to an application and you don’t want to always grab copies of those files when you develop locally. Rack::StaticFallback will rewrite requests to those files and use the actual files from the …

Read more