fixed set_attachment_attr
works with CouchDB 0.10.0 * use "content_type" instead of "content-type" * do not encode attachment Signed-off-by: Marcos Tapajós <tapajos@gmail.com>
This commit is contained in:
parent
581f3b748c
commit
dad7e349a7
|
@ -65,7 +65,7 @@ module CouchRest
|
||||||
content_type = args[:content_type] ? args[:content_type] : get_mime_type(args[:file])
|
content_type = args[:content_type] ? args[:content_type] : get_mime_type(args[:file])
|
||||||
self['_attachments'][args[:name]] = {
|
self['_attachments'][args[:name]] = {
|
||||||
'content_type' => content_type,
|
'content_type' => content_type,
|
||||||
'data' => encode_attachment(args[:file].read)
|
'data' => args[:file].read
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue