EasyBackup
Simple DSL to program backups
Installation
Add this line to your application's Gemfile:
gem 'easy_backup'
And then execute:
$ bundle
Or install it yourself as:
$ gem install easy_backup
Usage
EasyBackup::Specification.new do
save Postgres do
host 'localhost'
port 5432
database 'db_production'
username 'user_prod'
password 'password'
zip
end
save FileSystem do
folder 'c:/resources'
file 'c:/data/file.txt'
zip 'data.zip'
end
into FileSystem do
folder lambda { "c:/backups/#{Time.now.strftime('%Y%m%d%H%M%S')}" }
end
into SFTP do
host 'remote'
username 'user_sftp'
password 'password'
folder "backups/#{Time.now.strftime('%Y%m%d%H%M%S')}"
end
schedule :every, '3h', :first_at => Chronic.parse('this tuesday 5:00')
end
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request