module CouchPotato::Extensions::Attachments

Public Instance Methods

attachment(name) click to toggle source
# File lib/couch_potato/extensions/attachments.rb, line 4
def attachment(name)
  if not new?
    begin
      CouchPotato.database.send(:database).fetch_attachment(id, name)
    rescue RestClient::ResourceNotFound
    end
  end
end