Sha256: 017a0a6e4f006229884877c96ab4e592bac410b83f28c57004ebe5ef595c0f72
Contents?: true
Size: 389 Bytes
Versions: 11
Compression:
Stored size: 389 Bytes
Contents
module RailsConnector # Include this module in order to tag the string as one with HTML content module HtmlString include LinkResolvable # Returns whether the String contains HTML (default to true, overrides String.html?). def html? true end end end class String # Returns whether the String contains HTML (default to false). def html? false end end
Version data entries
11 entries across 11 versions & 1 rubygems