method

pack

pack()
public

No documentation available.

# File activesupport/lib/active_support/cache/entry.rb, line 116
      def pack
        members = [value, expires_at, version]
        members.pop while !members.empty? && members.last.nil?
        members
      end