Class: ApimaticCalculator::FileWrapper
- Inherits:
-
Object
- Object
- ApimaticCalculator::FileWrapper
- Defined in:
- lib/apimatic_calculator/utilities/file_wrapper.rb
Overview
A utility to allow users to set the content-type for files
Instance Attribute Summary collapse
-
#content_type ⇒ Object
readonly
Returns the value of attribute content_type.
-
#file ⇒ Object
readonly
Returns the value of attribute file.
Instance Method Summary collapse
-
#initialize(file, content_type: 'application/octet-stream') ⇒ FileWrapper
constructor
A new instance of FileWrapper.
Constructor Details
#initialize(file, content_type: 'application/octet-stream') ⇒ FileWrapper
Returns a new instance of FileWrapper.
12 13 14 15 |
# File 'lib/apimatic_calculator/utilities/file_wrapper.rb', line 12 def initialize(file, content_type: 'application/octet-stream') @file = file @content_type = content_type end |
Instance Attribute Details
#content_type ⇒ Object (readonly)
Returns the value of attribute content_type.
9 10 11 |
# File 'lib/apimatic_calculator/utilities/file_wrapper.rb', line 9 def content_type @content_type end |
#file ⇒ Object (readonly)
Returns the value of attribute file.
10 11 12 |
# File 'lib/apimatic_calculator/utilities/file_wrapper.rb', line 10 def file @file end |