Methods
N
R
Attributes
[RW] content_type
[RW] headers
[RW] original_filename
[RW] tempfile
Class Public methods
new(hash)
# File actionpack/lib/action_dispatch/http/upload.rb, line 6
def initialize(hash)
  @original_filename = encode_filename(hash[:filename])
  @content_type      = hash[:type]
  @headers           = hash[:head]
  @tempfile          = hash[:tempfile]
  raise(ArgumentError, ':tempfile is required') unless @tempfile
end
Instance Public methods
read(*args)
# File actionpack/lib/action_dispatch/http/upload.rb, line 14
def read(*args)
  @tempfile.read(*args)
end