Class: Rack::Utils::Multipart::UploadedFile

Inherits:
Object
  • Object
show all
Defined in:
lib/rack/utils.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, content_type = "text/plain", binary = false) ⇒ UploadedFile

Returns a new instance of UploadedFile.



451
452
453
454
455
456
457
458
459
# File 'lib/rack/utils.rb', line 451

def initialize(path, content_type = "text/plain", binary = false)
  raise "#{path} file does not exist" unless ::File.exist?(path)
  @content_type = content_type
  @original_filename = ::File.basename(path)
  @tempfile = Tempfile.new(@original_filename)
  @tempfile.set_encoding(Encoding::BINARY) if @tempfile.respond_to?(:set_encoding)
  @tempfile.binmode if binary
  FileUtils.copy_file(path, @tempfile.path)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method_name, *args, &block) ⇒ Object

:nodoc:



466
467
468
# File 'lib/rack/utils.rb', line 466

def method_missing(method_name, *args, &block) #:nodoc:
  @tempfile.__send__(method_name, *args, &block)
end

Instance Attribute Details

#content_typeObject

The content type of the “uploaded” file



449
450
451
# File 'lib/rack/utils.rb', line 449

def content_type
  @content_type
end

#original_filenameObject (readonly)

The filename, not including the path, of the “uploaded” file



446
447
448
# File 'lib/rack/utils.rb', line 446

def original_filename
  @original_filename
end

Instance Method Details

#pathObject Also known as: local_path



461
462
463
# File 'lib/rack/utils.rb', line 461

def path
  @tempfile.path
end