method
uncompress
rails latest stable - Class:
ActiveRecord::Encryption::Encryptor
uncompress(data)private
No documentation available.
# File activerecord/lib/active_record/encryption/encryptor.rb, line 136
def uncompress(data)
Zlib::Inflate.inflate(data).tap do |uncompressed_data|
uncompressed_data.force_encoding(data.encoding)
end
end