Class: Smartsheet::API::PathFileSpec

Inherits:
Object
  • Object
show all
Defined in:
lib/smartsheet/api/file_spec.rb

Overview

Specification for a file attachment by path, target filename, and MIME content type

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, filename, content_type) ⇒ PathFileSpec

Returns a new instance of PathFileSpec.



10
11
12
13
14
15
# File 'lib/smartsheet/api/file_spec.rb', line 10

def initialize(path, filename, content_type)
  @file_length = File.size(path)
  @filename = (filename.nil? || filename.empty?) ? File.basename(path) : filename
  @upload_io = Faraday::UploadIO.new(path, content_type, CGI::escape(@filename))
  @content_type = content_type
end

Instance Attribute Details

#content_typeObject (readonly)

Returns the value of attribute content_type.



8
9
10
# File 'lib/smartsheet/api/file_spec.rb', line 8

def content_type
  @content_type
end

#file_lengthObject (readonly)

Returns the value of attribute file_length.



8
9
10
# File 'lib/smartsheet/api/file_spec.rb', line 8

def file_length
  @file_length
end

#filenameObject (readonly)

Returns the value of attribute filename.



8
9
10
# File 'lib/smartsheet/api/file_spec.rb', line 8

def filename
  @filename
end

#upload_ioObject (readonly)

Returns the value of attribute upload_io.



8
9
10
# File 'lib/smartsheet/api/file_spec.rb', line 8

def upload_io
  @upload_io
end