Class: Flickr::Uploader::MultiPartForm
Instance Attribute Summary collapse
-
#boundary ⇒ Object
Returns the value of attribute boundary.
-
#parts ⇒ Object
Returns the value of attribute parts.
Instance Method Summary collapse
-
#initialize(boundary = nil) ⇒ MultiPartForm
constructor
A new instance of MultiPartForm.
- #to_s ⇒ Object
Constructor Details
#initialize(boundary = nil) ⇒ MultiPartForm
Returns a new instance of MultiPartForm.
116 117 118 119 120 |
# File 'lib/flickr/uploader.rb', line 116 def initialize(boundary=nil) @boundary = boundary || "----------------------------Ruby#{rand(1000000000000)}" @parts = [] end |
Instance Attribute Details
#boundary ⇒ Object
Returns the value of attribute boundary.
114 115 116 |
# File 'lib/flickr/uploader.rb', line 114 def boundary @boundary end |
#parts ⇒ Object
Returns the value of attribute parts.
114 115 116 |
# File 'lib/flickr/uploader.rb', line 114 def parts @parts end |
Instance Method Details
#to_s ⇒ Object
122 123 124 125 126 |
# File 'lib/flickr/uploader.rb', line 122 def to_s "--#@boundary\r\n"+ parts.map{|p| p.to_s}.join("\r\n--#@boundary\r\n")+ "\r\n--#@boundary--\r\n" end |