1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/action_text.rb
David Heinemeier Hansson f1d74871e7 Rename from Active Text to Action Text
This is more like Action View than Active Model.
2018-04-13 16:23:04 -07:00

35 lines
675 B
Ruby

require "active_record"
require "action_text/engine"
require "nokogiri"
module ActionText
extend ActiveSupport::Autoload
mattr_accessor(:renderer)
autoload :Attachable
autoload :Attachment
autoload :Attribute
autoload :Content
autoload :Fragment
autoload :HtmlConversion
autoload :PlainTextConversion
autoload :Serialization
autoload :TrixAttachment
module Attachables
extend ActiveSupport::Autoload
autoload :ContentAttachment
autoload :MissingAttachable
autoload :RemoteImage
end
module Attachments
extend ActiveSupport::Autoload
autoload :Caching
autoload :Minification
autoload :TrixConversion
end
end