Class: ActiveMail::Inliner::Null

Inherits:
Base
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/activemail/inliner/null.rb

Overview

Opt-out / test adapter: returns HTML untouched.

Instance Method Summary collapse

Instance Method Details

#inline(html) ⇒ Object



13
14
15
# File 'lib/activemail/inliner/null.rb', line 13

def inline(html)
  html
end

#noop?Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/activemail/inliner/null.rb', line 18

def noop?
  true
end