module FTPMVC::Input

Public Instance Methods

read_all() click to toggle source
# File lib/ftpmvc/input.rb, line 3
def read_all
  ''.tap do |content|
    read { |chunk| content << chunk }
  end
end