module MandrillQueue::Message::Attachments::DSL

Public Instance Methods

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