Do this gem support tags with multiple objects? For example, instead of doing like this ```ruby photos.each { |photo| album.tag(photo) } ``` can we ```ruby album.tag(photos) ``` to avoid N+1 query ? If it does not support, why it not π€ ?