method

expanded_version

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: ActiveSupport::Cache::Store
expanded_version(key) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/cache.rb, line 650 def expanded_version(key) case when key.respond_to?(:cache_version) then key.cache_version.to_param when key.is_a?(Array) then key.map { |element| expanded_version(element) }.compact.to_param when key.respond_to?(:to_a) then expanded_version(key.to_a) end end
Register or log in to add new notes.