method

dump_version

dump_version(version)
private

No documentation available.

# File activesupport/lib/active_support/cache/coder.rb, line 136
        def dump_version(version)
          if version.encoding != Encoding::UTF_8 || version.start_with?(MARSHAL_SIGNATURE)
            Marshal.dump(version)
          else
            version.b
          end
        end