module Shrine::Plugins::MultiCache::AttacherMethods

  1. lib/shrine/plugins/multi_cache.rb

Methods

Public Instance

  1. cached?

Public Instance methods

cached?(file = self.file)
[show source]
   # File lib/shrine/plugins/multi_cache.rb
13 def cached?(file = self.file)
14   super || additional_cache.any? { |key| uploaded?(file, key) }
15 end