lib/backup/mysql.rb in backup-0.2.0 vs lib/backup/mysql.rb in backup-1.0.0
- old
+ new
@@ -11,16 +11,19 @@
#
# - Make MySQL Dump
# Creates a MySQL dump based on the parameters provided by the user
# - Compress
# Compresses the .tar file using Gzip
+ # - Encrypt
+ # Encrypts the backup file
# - Transfer
# Initializes the transfer to either S3 or using SSH
# - Remove Temp Files
# Removes temporary files after the process is complete
def run
make_mysql_dump
compress
+ encrypt
transfer
remove_temp_files
end
private
\ No newline at end of file