Sha256: 1dddce885deab61c810b4174cbed10f3ab439e343fb8206ebd4829085068151e

Contents?: true

Size: 1.01 KB

Versions: 5

Compression:

Stored size: 1.01 KB

Contents

Capistrano::Configuration.instance.load do

  _cset(:eye_default_hooks) { true }
  _cset(:eye_config) { "config/eye.yml" }
  _cset(:eye_bin) { "bundle exec eye-patch" }
  _cset(:eye_roles) { :app }

  if fetch(:eye_default_hooks)
    after  "deploy:stop",    "eye:stop"
    after  "deploy:start",   "eye:load_config"
    before "deploy:restart", "eye:restart"
  end

  namespace :eye do

    desc "Start eye with the desired configuration file"
    task :load_config, roles: -> { fetch(:eye_roles) } do
      run "cd #{current_path} && #{fetch(:eye_bin)} q && #{fetch(:eye_bin)} l #{fetch(:eye_config)}"
    end

    desc "Stop eye and all of its monitored tasks"
    task :stop, roles: -> { fetch(:eye_roles) } do
      run "cd #{current_path} && #{fetch(:eye_bin)} stop all && #{fetch(:eye_bin)} q"
    end

    desc "Restart all tasks monitored by eye"
    task :restart, roles: -> { fetch(:eye_roles) } do
      run "cd #{current_path} && #{fetch(:eye_bin)} r all"
    end
  end

  before "eye:restart", "eye:load_config"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
eye-patch-0.2.0 lib/eye/patch/capistrano.rb
eye-patch-0.1.8 lib/eye/patch/capistrano.rb
eye-patch-0.1.7 lib/eye/patch/capistrano.rb
eye-patch-0.1.6 lib/eye/patch/capistrano.rb
eye-patch-0.1.5 lib/eye/patch/capistrano.rb