Class: Square::FileWrapper

Inherits:
CoreLibrary::FileWrapper
  • Object
show all
Defined in:
lib/square/utilities/file_wrapper.rb

Overview

A utility to allow users to set the content-type for files

Instance Method Summary collapse

Constructor Details

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

The constructor.

Parameters:

  • file (File)

    The file to be sent in the request.

  • content_type (string) (defaults to: 'application/octet-stream')

    The content type of the provided file.



7
8
9
# File 'lib/square/utilities/file_wrapper.rb', line 7

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