summaryrefslogtreecommitdiff
path: root/lib/tasks/backup.rake
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-02-07 20:48:24 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-02-07 20:48:24 +0100
commitea8703cec6c82edefc65fe35fc60a1d4c0a7c1a3 (patch)
tree6f0cd87f17c83ab835249752015d562f0c81cd54 /lib/tasks/backup.rake
parent50f1c25d6ae641e48d29cc4a6742dd12ce60d4a9 (diff)
Added whenever gem and an example daily rake task.
Diffstat (limited to 'lib/tasks/backup.rake')
-rw-r--r--lib/tasks/backup.rake6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/tasks/backup.rake b/lib/tasks/backup.rake
new file mode 100644
index 0000000..c285e1f
--- /dev/null
+++ b/lib/tasks/backup.rake
@@ -0,0 +1,6 @@
+namespace :backup do
+ desc "Backup the system"
+ task :daily_backup => :environment do
+ # This would be the daily backup.
+ end
+end \ No newline at end of file