Sha256: ae25562272c976810ab80e4ec2ee3c85a42a3530ce24cc7da2eb2b7a1df4467d
Contents?: true
Size: 306 Bytes
Versions: 12
Compression:
Stored size: 306 Bytes
Contents
# frozen_string_literal: true class DataTransformerBase private_class_method :new protected def str_to_hash_list(str) raise NotImplementedError('Should be implemented in child') end def hash_list_to_str(hash_list) raise NotImplementedError('Should be implemented in child') end end
Version data entries
12 entries across 12 versions & 5 rubygems