class Temple::HTML::AttributeRemover

def initialize(opts = {})

def initialize(opts = {})
  super
  raise ArgumentError, "Option :remove_empty_attrs must be an Array of Strings" unless Array === options[:remove_empty_attrs] &&
    options[:remove_empty_attrs].all? {|a| String === a }
end