method

uncompress

uncompress(data)
private

No documentation available.

# File activerecord/lib/active_record/encryption/encryptor.rb, line 152
        def uncompress(data)
          Zlib::Inflate.inflate(data).tap do |uncompressed_data|
            uncompressed_data.force_encoding(data.encoding)
          end
        end