Class: Rack::TempfileReaper
- Inherits:
-
Object
- Object
- Rack::TempfileReaper
- Defined in:
- lib/rack/tempfile_reaper.rb
Overview
Middleware tracks and cleans Tempfiles created throughout a request (i.e. Rack::Multipart) Ideas/strategy based on posts by Eric Wong and Charles Oliver Nutter groups.google.com/forum/#!searchin/rack-devel/temp/rack-devel/brK8eh-MByw/sw61oJJCGRMJ
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app) ⇒ TempfileReaper
constructor
A new instance of TempfileReaper.
Constructor Details
#initialize(app) ⇒ TempfileReaper
Returns a new instance of TempfileReaper.
9 10 11 |
# File 'lib/rack/tempfile_reaper.rb', line 9 def initialize(app) @app = app end |
Instance Method Details
#call(env) ⇒ Object
13 14 15 16 17 18 19 20 |
# File 'lib/rack/tempfile_reaper.rb', line 13 def call(env) env[RACK_TEMPFILES] ||= [] status, headers, body = @app.call(env) body_proxy = BodyProxy.new(body) do env[RACK_TEMPFILES].each(&:close!) unless env[RACK_TEMPFILES].nil? end [status, headers, body_proxy] end |