Sha256: 83b0967249bbe572bd74a78984b0f978be85062332255cfdede5c667979c0737

Contents?: true

Size: 409 Bytes

Versions: 21

Compression:

Stored size: 409 Bytes

Contents

module RailsConnector

  # Include this module in order to tag the string as one with HTML content
  module HtmlString #:nodoc:
    include LinkResolvable
    # Returns whether the String contains HTML (default to true, overrides String.html?).
    def html?
      true
    end
  end

end

class String #:nodoc:
  # Returns whether the String contains HTML (default to false).
  def html?
    false
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
infopark_rails_connector-6.8.0.beta.200.621.4c8e1b0 lib/rails_connector/html_string.rb