Sha256: 40a1bf7bce31dd118884053c46a13957ffbee1cae61aaad970507ff8f8ddd381
Contents?: true
Size: 528 Bytes
Versions: 17
Compression:
Stored size: 528 Bytes
Contents
module Backup module Adapters class SQLite < Base attr_accessor :database private # Compress the sqlite file def perform log system_messages[:sqlite] run "gzip -c --best #{database} > #{File.join(tmp_path, compressed_file)}" end def load_settings self.database = procedure.get_adapter_configuration.attributes['database'] end def performed_file_extension "" end end end end
Version data entries
17 entries across 17 versions & 5 rubygems