Sha256: 0f7c20cebc1de810c921d7a03f68e6011f1d5bd68e55282b1397f0130feb79f5

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 KB

Contents

Capistrano::Configuration.instance.load do

  _cset :unicorn_bin, "bundle exec unicorn"
  _cset :unicorn_pid, "#{deploy_to}/current/tmp/pids/unicorn.pid"
  _cset :unicorn_std_log, "log/unicorn.stderr.log"
  _cset :unicorn_err_log, "log/unicorn.stderr.log"
  _cset :unicorn_worker_processes, 2
  _cset :unicorn_listen_backlog, 2048

  require "capistrano-unicorn"

  namespace :unicorn do
    desc "Setup unicorn"
    task :setup, :except => { :no_release => true } do
    run "mkdir -p \"#{shared_path}/config/unicorn\""
      config_path = "#{shared_path}/config/unicorn/#{stage}.rb"
      template_path = File.expand_path('../../templates/unicorn/unicorn.rb.erb', __FILE__)
      vars = {
          'application'=> application,
          'current_path' => current_path,
          'unicorn_pid' => unicorn_pid,
          'unicorn_std_log' => unicorn_std_log,
          'unicorn_err_log' => unicorn_err_log,
          'stage' => stage,
          'unicorn_listen_backlog' => unicorn_listen_backlog,
          'unicorn_worker_processes' => unicorn_worker_processes
      }
      put(render_erb_template(template_path, vars), config_path)
    end
  end

  after :"deploy:setup", :"unicorn:setup";
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ms_deploy-0.2.5 lib/ms_deploy/recipes/unicorn.rb
ms_deploy-0.2.4 lib/ms_deploy/recipes/unicorn.rb