Sha256: 49307932993946745a3ba281cd22d36ed99ed3d420b46314a5157f70466edf37
Contents?: true
Size: 600 Bytes
Versions: 22
Compression:
Stored size: 600 Bytes
Contents
# == Schema Information # # Table name: alchemy_essence_htmls # # id :integer not null, primary key # source :text # creator_id :integer # updater_id :integer # created_at :datetime not null # updated_at :datetime not null # module Alchemy class EssenceHtml < ActiveRecord::Base acts_as_essence ingredient_column: 'source' # Returns the first x (default = 30) (HTML escaped) characters from self.source for the Element#preview_text method. def preview_text(maxlength = 30) ::CGI.escapeHTML(source.to_s)[0..maxlength] end end end
Version data entries
22 entries across 22 versions & 1 rubygems