diaspora/lib/tasks/before_deploy.rake
2012-01-19 19:21:10 -08:00

20 lines
713 B
Ruby

desc "include custom landing page before heroku san deploys"
task :before_deploy => :environment do
each_heroku_app do |name, app, repo|
home_file = @app_settings[name]['config']['HOME_FILE']
# Perform this task only if custom landing page is not present in app/views/home/_show.html.haml
if home_file.present?
puts "-----> custom landing page detected..."
puts "-----> including custom landing page in a temp commit"
@did_not_stash = system("git stash| grep 'No local changes to save'")
system("git add #{home_file} -f") ? true : fail
system("git commit -m 'adding custom landing page for heroku'") ? true : fail
puts "-----> done"
end
end
end