mirror of
https://github.com/scratchfoundation/jquery-timeago.git
synced 2024-11-23 15:57:54 -05:00
11 lines
387 B
Ruby
11 lines
387 B
Ruby
SETTINGS = {
|
|
'rsync_server' => ENV['rsync_server'] || 'timeago@yarp.com:/var/www/timeago/',
|
|
'rsync_options' => ENV['rsync_options'] || '-e ssh -avz --delete --exclude=.git'
|
|
}
|
|
|
|
desc 'Publishes to server (edit Rakefile to config)'
|
|
task :publish do
|
|
cmd = "rsync #{SETTINGS['rsync_options']} ./ #{SETTINGS['rsync_server']}"
|
|
puts "\nSyncing with server: #{cmd}\n\n"
|
|
system(cmd)
|
|
end
|