Sha256: 5f1cba8e41229334beb2d207358c3c00e5691c8b06c7a3e8c96fa866d5bf455f
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
Contents
# frozen_string_literal: true module Schienenzeppelin module Helpers class Capistrano < HelperBase def apply say 'Installing and configuring Capistrano' run('bundle exec cap install', capture: true) directory('lib/capistrano', 'lib/capistrano') configure_deploy template('Capfile.erb', 'Capfile', force: true) end private def configure_deploy gsub_file('config/deploy.rb', /set :application, .+/, "set :application, '#{app_name}'") uncomment_lines('config/deploy.rb', /set :deploy_to/) gsub_file('config/deploy.rb', /set :deploy_to, .+"/, 'set :deploy_to, "/home/deploy/#{fetch :application}"') # rubocop:disable Lint/InterpolationCheck uncomment_lines('config/deploy.rb', /set :keep_releases/) uncomment_lines('config/deploy.rb', /append :linked_dirs/) uncomment_lines('config/deploy.rb', /ask :branch/) gsub_file('config/deploy.rb', /ask :branch/, 'set :branch') append_to_file('config/deploy.rb') do <<~RUBY set :passenger_restart_with_sudo, true RUBY end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
schienenzeppelin-0.1 | lib/schienenzeppelin/helpers/capistrano.rb |