Sha256: 834256280c7a0353c12ef96fb41e83b435eefc621e89a186414706eb3ed5755a
Contents?: true
Size: 391 Bytes
Versions: 36
Compression:
Stored size: 391 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
36 entries across 36 versions & 3 rubygems