lib/backup/syncer/rsync/base.rb in backup-3.0.23 vs lib/backup/syncer/rsync/base.rb in backup-3.0.24
- old
+ new
@@ -10,14 +10,11 @@
##
# Instantiates a new RSync Syncer object
# and sets the default configuration
def initialize
- load_defaults!
+ super
- @path ||= 'backups'
- @directories = Array.new
- @mirror ||= false
@additional_options ||= Array.new
end
private