module MandrillQueue::Message::Images::DSL

Public Instance Methods

images(&block) click to toggle source
# File lib/mandrill_queue/message/images.rb, line 23
def images(&block)
        @_images ||= Attachments.new
        @_images.dsl(&block) if block_given?
        block_given? ? self : @_images
end