Sha256: f67088488faf3a309c5e2bde5dbb3baee0f89b5d3752461be13c766fb2fd60b0
Contents?: true
Size: 307 Bytes
Versions: 6
Compression:
Stored size: 307 Bytes
Contents
namespace :backup do desc 'Restore data from git repo, last backup by default' task :restore, :tag do |task, args| on roles(:app) do within release_path do with rails_env: fetch(:stage) do execute :rake, "backup:restore #{args[:tag]}" end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems