0
0
Fork 0

Further abstract caching for includes

This commit is contained in:
Eugen Rochko 2016-11-30 15:57:56 +01:00
parent 356d3874eb
commit a21bcac9e1
4 changed files with 22 additions and 2 deletions

View file

@ -0,0 +1,15 @@
# frozen_string_literal: true
module Cacheable
extend ActiveSupport::Concern
class_methods do
def cache_associated(*associations)
@cache_associated = associations
end
end
included do
scope :with_includes, -> { includes(@cache_associated) }
end
end