Class: Rack::Test::UploadedFile
- Inherits:
-
Object
- Object
- Rack::Test::UploadedFile
- Defined in:
- lib/rack/test/uploaded_file.rb
Overview
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.
-
#tempfile ⇒ Object
readonly
The tempfile.
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)
-
#respond_to?(method_name, include_private = false) ⇒ Boolean
:nodoc:.
Constructor Details
#initialize(path, content_type = "text/plain", binary = false) ⇒ UploadedFile
Returns a new instance of UploadedFile.
23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/rack/test/uploaded_file.rb', line 23 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:
42 43 44 |
# File 'lib/rack/test/uploaded_file.rb', line 42 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
21 22 23 |
# File 'lib/rack/test/uploaded_file.rb', line 21 def content_type @content_type end |
#original_filename ⇒ Object (readonly)
The filename, not including the path, of the “uploaded” file
15 16 17 |
# File 'lib/rack/test/uploaded_file.rb', line 15 def original_filename @original_filename end |
#tempfile ⇒ Object (readonly)
The tempfile
18 19 20 |
# File 'lib/rack/test/uploaded_file.rb', line 18 def tempfile @tempfile end |
Instance Method Details
#path ⇒ Object Also known as: local_path
36 37 38 |
# File 'lib/rack/test/uploaded_file.rb', line 36 def path @tempfile.path end |
#respond_to?(method_name, include_private = false) ⇒ Boolean
:nodoc:
46 47 48 |
# File 'lib/rack/test/uploaded_file.rb', line 46 def respond_to?(method_name, include_private = false) #:nodoc: @tempfile.respond_to?(method_name, include_private) || super end |