Sha256: 0ec5f09a29a4b5c303a21446340288de479fe24586050c4350516fb7520841e7
Contents?: true
Size: 576 Bytes
Versions: 17
Compression:
Stored size: 576 Bytes
Contents
require 'rack/cache' module Locomotive module Middlewares class Cache def initialize(app, opts = {}, &block) url_format = Locomotive::Dragonfly.app.configuration[:url_format] base_format = url_format.split('/:').first rescue '/images/dynamic' @app = app @regexp = %r{^#{base_format}/} @context = ::Rack::Cache.new(app, opts, &block) end def call(env) if env['PATH_INFO'] =~ @regexp @context.call(env) else @app.call(env) end end end end end
Version data entries
17 entries across 17 versions & 2 rubygems