Module: ActionText
- Extended by:
 - ActiveSupport::Autoload
 
- Defined in:
 - actiontext/lib/action_text.rb,
actiontext/lib/action_text/engine.rb,
actiontext/lib/action_text/content.rb,
actiontext/lib/action_text/version.rb,
actiontext/lib/action_text/fragment.rb,
actiontext/lib/action_text/attribute.rb,
actiontext/lib/action_text/rendering.rb,
actiontext/lib/action_text/attachable.rb,
actiontext/lib/action_text/attachment.rb,
actiontext/lib/action_text/deprecator.rb,
actiontext/lib/action_text/encryption.rb,
actiontext/lib/action_text/fixture_set.rb,
actiontext/lib/action_text/gem_version.rb,
actiontext/lib/action_text/serialization.rb,
actiontext/lib/action_text/html_conversion.rb,
actiontext/lib/action_text/trix_attachment.rb,
actiontext/lib/action_text/attachment_gallery.rb,
actiontext/lib/action_text/system_test_helper.rb,
actiontext/lib/action_text/attachments/caching.rb,
actiontext/lib/action_text/plain_text_conversion.rb,
actiontext/lib/action_text/attachables/remote_image.rb,
actiontext/lib/action_text/attachments/minification.rb,
actiontext/lib/action_text/attachments/trix_conversion.rb,
actiontext/lib/action_text/attachables/content_attachment.rb,
actiontext/lib/action_text/attachables/missing_attachable.rb,
actiontext/lib/generators/action_text/install/install_generator.rb,
actiontext/app/models/action_text/record.rb,
actiontext/app/models/action_text/rich_text.rb,
actiontext/app/helpers/action_text/tag_helper.rb,
actiontext/app/helpers/action_text/content_helper.rb,
actiontext/app/models/action_text/encrypted_rich_text.rb 
Overview
:markup: markdown
Defined Under Namespace
Modules: Attachable, Attachables, Attachments, Attribute, ContentHelper, Encryption, Generators, HtmlConversion, PlainTextConversion, Rendering, Serialization, SystemTestHelper, TagHelper, VERSION Classes: Attachment, AttachmentGallery, Content, EncryptedRichText, Engine, FixtureSet, Fragment, Record, RichText, TrixAttachment
Class Method Summary collapse
- 
  
    
      .deprecator  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
:nodoc:.
 - 
  
    
      .gem_version  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Returns the currently loaded version of Action Text as a ‘Gem::Version`.
 - .html_document_class ⇒ Object
 - .html_document_fragment_class ⇒ Object
 - 
  
    
      .version  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Returns the currently loaded version of Action Text as a ‘Gem::Version`.
 
Methods included from ActiveSupport::Autoload
autoload, autoload_at, autoload_under, eager_autoload, eager_load!
Class Method Details
.deprecator ⇒ Object
:nodoc:
      6 7 8  | 
    
      # File 'actiontext/lib/action_text/deprecator.rb', line 6 def self.deprecator # :nodoc: @deprecator ||= ActiveSupport::Deprecation.new end  | 
  
.gem_version ⇒ Object
Returns the currently loaded version of Action Text as a ‘Gem::Version`.
      7 8 9  | 
    
      # File 'actiontext/lib/action_text/gem_version.rb', line 7 def self.gem_version Gem::Version.new VERSION::STRING end  | 
  
.html_document_class ⇒ Object
      47 48 49 50 51  | 
    
      # File 'actiontext/lib/action_text.rb', line 47 def html_document_class return @html_document_class if defined?(@html_document_class) @html_document_class = defined?(Nokogiri::HTML5) ? Nokogiri::HTML5::Document : Nokogiri::HTML4::Document end  | 
  
.html_document_fragment_class ⇒ Object
      53 54 55 56 57  | 
    
      # File 'actiontext/lib/action_text.rb', line 53 def html_document_fragment_class return @html_document_fragment_class if defined?(@html_document_fragment_class) @html_document_fragment_class = defined?(Nokogiri::HTML5) ? Nokogiri::HTML5::DocumentFragment : Nokogiri::HTML4::DocumentFragment end  | 
  
.version ⇒ Object
Returns the currently loaded version of Action Text as a ‘Gem::Version`.
      9 10 11  | 
    
      # File 'actiontext/lib/action_text/version.rb', line 9 def self.version gem_version end  |