in lib/licensee/content_helper.rb [222:236]
def strip(regex_or_sym)
return unless _content
if regex_or_sym.is_a?(Symbol)
meth = "strip_#{regex_or_sym}"
return send(meth) if respond_to?(meth, true)
raise ArgumentError, "#{regex_or_sym} is an invalid regex reference" unless REGEXES[regex_or_sym]
regex_or_sym = REGEXES[regex_or_sym]
end
@_content = _content.gsub(regex_or_sym, ' ').squeeze(' ').strip
end