Sha256: d433bed8c90f753501c87c06b5b3efbd7ae8c5ae4756b8d0ceb4d8ad021140bd
Contents?: true
Size: 167 Bytes
Versions: 21
Compression:
Stored size: 167 Bytes
Contents
# frozen_string_literal: true class Memolog::RailsMiddleware def initialize(app) @app = app end def call(env) Memolog.run { @app.call(env) } end end
Version data entries
21 entries across 21 versions & 1 rubygems