aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_text.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/action_text.rb')
-rw-r--r--lib/action_text.rb38
1 files changed, 0 insertions, 38 deletions
diff --git a/lib/action_text.rb b/lib/action_text.rb
deleted file mode 100644
index d723508e74..0000000000
--- a/lib/action_text.rb
+++ /dev/null
@@ -1,38 +0,0 @@
-# frozen_string_literal: true
-
-require "active_record"
-require "action_text/engine"
-require "nokogiri"
-
-module ActionText
- extend ActiveSupport::Autoload
-
- mattr_accessor(:renderer)
-
- autoload :Attachable
- autoload :AttachmentGallery
- 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