Sha256: e45b65cd5d2caad1a8d93bd96865b06991f8b7be861ede6ba89e4a99827bd323
Contents?: true
Size: 601 Bytes
Versions: 27
Compression:
Stored size: 601 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
27 entries across 27 versions & 2 rubygems