Sha256: a681d168aa9b5db7eb2f789f16b699985fe6f81eca54762e32174e38b5a743d3
Contents?: true
Size: 232 Bytes
Versions: 3
Compression:
Stored size: 232 Bytes
Contents
module ActionController class Reloader def initialize(app) @app = app end def call(env) Dispatcher.reload_application @app.call(env) ensure Dispatcher.cleanup_application end end end
Version data entries
3 entries across 3 versions & 3 rubygems