aboutsummaryrefslogtreecommitdiffstats
path: root/lib/attachment_to_html/html.rb
blob: 44d095be881b23215f5a26566bdef340a5da2d01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'forwardable'
module AttachmentToHTML
    class HTML
        extend Forwardable

        def_delegator :@adapter, :to_html, :to_s
        def_delegator :@adapter, :success?

        def initialize(adapter)
            @adapter = adapter
        end

    end
end