Skip to content

Instantly share code, notes, and snippets.

@therealechan
Forked from yctay/figaro-capistrano.rb
Last active August 29, 2015 14:17
Show Gist options
  • Select an option

  • Save therealechan/ed8b17e48c52f6dc6bc5 to your computer and use it in GitHub Desktop.

Select an option

Save therealechan/ed8b17e48c52f6dc6bc5 to your computer and use it in GitHub Desktop.
namespace :figaro do
desc "SCP transfer figaro configuration to the shared folder"
task :setup do
transfer :up, "config/application.yml", "#{shared_path}/application.yml", :via => :scp
end
desc "Symlink application.yml to the release path"
task :finalize do
run "ln -sf #{shared_path}/application.yml #{release_path}/config/application.yml"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment