aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/app/models/active_storage/attachment.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2017-08-03 16:40:37 -0400
committerRafael Mendonça França <rafaelmfranca@gmail.com>2017-08-03 16:57:48 -0400
commitf601a01b2cb4c6c0b9f6397874c2998810993bed (patch)
tree0f1771645e89e810a631c503c544cc045ce2fe7b /activestorage/app/models/active_storage/attachment.rb
parent6a36b6b0cc35ef2272219069bc642b2817895d6a (diff)
downloadrails-f601a01b2cb4c6c0b9f6397874c2998810993bed.tar.gz
rails-f601a01b2cb4c6c0b9f6397874c2998810993bed.tar.bz2
rails-f601a01b2cb4c6c0b9f6397874c2998810993bed.zip
Do not eager load ActiveRecord::Base
Everything inside the app directory of a engine is autoload/eager loaded automatically so we don't need to require them.
Diffstat (limited to 'activestorage/app/models/active_storage/attachment.rb')
-rw-r--r--activestorage/app/models/active_storage/attachment.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/activestorage/app/models/active_storage/attachment.rb b/activestorage/app/models/active_storage/attachment.rb
index 2c8b7a9cf2..f7540e3a38 100644
--- a/activestorage/app/models/active_storage/attachment.rb
+++ b/activestorage/app/models/active_storage/attachment.rb
@@ -1,4 +1,3 @@
-require "active_storage/blob"
require "active_support/core_ext/module/delegation"
# Attachments associate records with blobs. Usually that's a one record-many blobs relationship,