Class: ActionDispatch::Http::UploadedFile

Inherits:
Object
  • Object
show all
Defined in:
lib/action_dispatch/http/upload.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(hash) ⇒ UploadedFile

Returns a new instance of UploadedFile.

Raises:

  • (ArgumentError)


8
9
10
11
12
13
14
# File 'lib/action_dispatch/http/upload.rb', line 8

def initialize(hash)
  @original_filename = hash[:filename]
  @content_type      = hash[:type]
  @headers           = hash[:head]
  @tempfile          = hash[:tempfile]
  raise(ArgumentError, ':tempfile is required') unless @tempfile
end

Instance Attribute Details

#content_typeObject

Returns the value of attribute content_type.



6
7
8
# File 'lib/action_dispatch/http/upload.rb', line 6

def content_type
  @content_type
end

#headersObject

Returns the value of attribute headers.



6
7
8
# File 'lib/action_dispatch/http/upload.rb', line 6

def headers
  @headers
end

#original_filenameObject

Returns the value of attribute original_filename.



6
7
8
# File 'lib/action_dispatch/http/upload.rb', line 6

def original_filename
  @original_filename
end

#tempfileObject

Returns the value of attribute tempfile.



6
7
8
# File 'lib/action_dispatch/http/upload.rb', line 6

def tempfile
  @tempfile
end

Instance Method Details

#read(*args) ⇒ Object



16
17
18
# File 'lib/action_dispatch/http/upload.rb', line 16

def read(*args)
  @tempfile.read(*args)
end

#rewindObject



20
21
22
# File 'lib/action_dispatch/http/upload.rb', line 20

def rewind
  @tempfile.rewind
end

#sizeObject



24
25
26
# File 'lib/action_dispatch/http/upload.rb', line 24

def size
  @tempfile.size
end