# File lib/puppet/network/http/rack/rest.rb, line 14 def initialize(file) @file = file end
# File lib/puppet/network/http/rack/rest.rb, line 24 def close @file.close end
# File lib/puppet/network/http/rack/rest.rb, line 18 def each while chunk = @file.read(CHUNK_SIZE) yield chunk end end