aboutsummaryrefslogtreecommitdiffstats
path: root/lib/attachment_to_html/html.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/attachment_to_html/html.rb')
-rw-r--r--lib/attachment_to_html/html.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/attachment_to_html/html.rb b/lib/attachment_to_html/html.rb
deleted file mode 100644
index 44d095be8..000000000
--- a/lib/attachment_to_html/html.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-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