Class: Multipart::FileParam

Inherits:
Object
  • Object
show all
Defined in:
lib/spout/helpers/send_file.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(k, filename, content) ⇒ FileParam

Returns a new instance of FileParam.



73
74
75
76
77
# File 'lib/spout/helpers/send_file.rb', line 73

def initialize(k, filename, content)
  @k = k
  @filename = filename
  @content = content
end

Instance Attribute Details

#contentObject

Returns the value of attribute content.



72
73
74
# File 'lib/spout/helpers/send_file.rb', line 72

def content
  @content
end

#filenameObject

Returns the value of attribute filename.



72
73
74
# File 'lib/spout/helpers/send_file.rb', line 72

def filename
  @filename
end

#kObject

Returns the value of attribute k.



72
73
74
# File 'lib/spout/helpers/send_file.rb', line 72

def k
  @k
end

Instance Method Details

#to_multipartObject



79
80
81
82
# File 'lib/spout/helpers/send_file.rb', line 79

def to_multipart
  mime_type = "application/octet-stream"
  "Content-Disposition: form-data; name=\"#{k}\"; filename=\"#{filename}\"\r\n" + "Content-Transfer-Encoding: binary\r\n" + "Content-Type: #{mime_type}\r\n\r\n" + content + "\r\n"
end