Class: ApimaticCalculator::FileWrapper

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(file, content_type: 'application/octet-stream') ⇒ FileWrapper

Returns a new instance of FileWrapper.



11
12
13
14
# File 'lib/apimatic_calculator/utilities/file_wrapper.rb', line 11

def initialize(file, content_type: 'application/octet-stream')
  @file = file
  @content_type = content_type
end

Instance Attribute Details

#content_typeObject (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

#fileObject (readonly)

Returns the value of attribute file.



9
10
11
# File 'lib/apimatic_calculator/utilities/file_wrapper.rb', line 9

def file
  @file
end