From 42e4eaa01504dadd3ff37fce49119ae3f156b23e Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Tue, 26 Dec 2017 19:45:43 +0100 Subject: Capistrano task for uploading puma config. --- lib/capistrano/tasks/configure_puma.rake | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lib/capistrano/tasks/configure_puma.rake (limited to 'lib/capistrano/tasks/configure_puma.rake') diff --git a/lib/capistrano/tasks/configure_puma.rake b/lib/capistrano/tasks/configure_puma.rake new file mode 100644 index 0000000..ccea36b --- /dev/null +++ b/lib/capistrano/tasks/configure_puma.rake @@ -0,0 +1,15 @@ +# :mode=ruby: +namespace :deploy do + desc 'Configure Puma' + task :configure_puma do + target_file = File.join(shared_path, 'config', 'puma.rb') + on roles(:app) do + unless test "[ -f #{target_file} ]" + template = ERB.new(IO.read(File.join(Dir.pwd, 'config', 'deploy', 'templates', 'puma.rb.erb'))) + upload!(StringIO.new(template.result(binding)), target_file) + end + end + end + + before 'deploy:finishing', 'deploy:generate_secret_token' +end -- cgit v1.2.3