Class: Flickr::MultiPartForm

Inherits:
Object
  • Object
show all
Defined in:
lib/flickr/upload.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(boundary = nil) ⇒ MultiPartForm

Returns a new instance of MultiPartForm.



67
68
69
70
71
# File 'lib/flickr/upload.rb', line 67

def initialize(boundary=nil)
	@boundary = boundary ||
	  "----------------------------Ruby#{rand(1000000000000)}"
	@parts = []
end

Instance Attribute Details

#boundaryObject

Returns the value of attribute boundary.



65
66
67
# File 'lib/flickr/upload.rb', line 65

def boundary
  @boundary
end

#partsObject

Returns the value of attribute parts.



65
66
67
# File 'lib/flickr/upload.rb', line 65

def parts
  @parts
end

Instance Method Details

#to_sObject



73
74
75
76
77
# File 'lib/flickr/upload.rb', line 73

def to_s
	"--#@boundary\r\n"+
	  parts.map{|p| p.to_s}.join("\r\n--#@boundary\r\n")+
	  "\r\n--#@boundary--\r\n"
end