Class: Rack::Utils::Multipart::UploadedFile
- Inherits:
-
Object
- Object
- Rack::Utils::Multipart::UploadedFile
- Defined in:
- lib/rack/utils.rb
Instance Attribute Summary collapse
-
#content_type ⇒ Object
The content type of the “uploaded” file.
-
#original_filename ⇒ Object
readonly
The filename, not including the path, of the “uploaded” file.
Instance Method Summary collapse
-
#initialize(path, content_type = "text/plain", binary = false) ⇒ UploadedFile
constructor
A new instance of UploadedFile.
-
#method_missing(method_name, *args, &block) ⇒ Object
:nodoc:.
- #path ⇒ Object (also: #local_path)
Constructor Details
#initialize(path, content_type = "text/plain", binary = false) ⇒ UploadedFile
Returns a new instance of UploadedFile.
479 480 481 482 483 484 485 486 487 |
# File 'lib/rack/utils.rb', line 479 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:
494 495 496 |
# File 'lib/rack/utils.rb', line 494 def method_missing(method_name, *args, &block) #:nodoc: @tempfile.__send__(method_name, *args, &block) end |
Instance Attribute Details
#content_type ⇒ Object
The content type of the “uploaded” file
477 478 479 |
# File 'lib/rack/utils.rb', line 477 def content_type @content_type end |
#original_filename ⇒ Object (readonly)
The filename, not including the path, of the “uploaded” file
474 475 476 |
# File 'lib/rack/utils.rb', line 474 def original_filename @original_filename end |
Instance Method Details
#path ⇒ Object Also known as: local_path
489 490 491 |
# File 'lib/rack/utils.rb', line 489 def path @tempfile.path end |