Sha256: a0d8aff425250dd74683199404a22ff9fab4eaafcc17b35941f7f343153ea203

Contents?: true

Size: 1006 Bytes

Versions: 8

Compression:

Stored size: 1006 Bytes

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)} 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

8 entries across 8 versions & 1 rubygems

Version Path
eye-patch-0.1.4 lib/eye/patch/capistrano.rb
eye-patch-0.1.3 lib/eye/patch/capistrano.rb
eye-patch-0.1.2 lib/eye/patch/capistrano.rb
eye-patch-0.1.1 lib/eye/patch/capistrano.rb
eye-patch-0.1.0 lib/eye/patch/capistrano.rb
eye-patch-0.0.9 lib/eye/patch/capistrano.rb
eye-patch-0.0.8 lib/eye/patch/capistrano.rb
eye-patch-0.0.7 lib/eye/patch/capistrano.rb