Sha256: e68073ff6341150e293cb9c04b0fce1e1fbd14148091d971c1cf6ef418a3fd24
Contents?: true
Size: 283 Bytes
Versions: 12
Compression:
Stored size: 283 Bytes
Contents
module Rails module DataMapper module Middleware class IdentityMap def initialize(app) @app = app end def call(env) ::DataMapper.repository do @app.call(env) end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems