This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-30 06:57:56 -08:00
|
|
|
# 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) }
|
2016-12-03 09:21:26 -08:00
|
|
|
scope :cache_ids, -> { select(:id, :updated_at) }
|
2016-11-30 06:57:56 -08:00
|
|
|
end
|
|
|
|
end
|