Sha256: ede7e98b873f1fc52985823f506519067a46a1a20a60c46739604c08912abb28

Contents?: true

Size: 619 Bytes

Versions: 24

Compression:

Stored size: 619 Bytes

Contents

Capistrano::Configuration.instance(true).load do

  namespace :bundle do
    desc "Runs Gem Bundle after deployment"
    task :install do
      run "cd #{deploy_to}/current; bundle install"
    end

    desc "lock bundle"
    task :lock do
      run "cd #{deploy_to}/current; bundle lock"
    end

    desc "unlock bundle"
    task :unlock do
      run "cd #{deploy_to}/current; bundle unlock"
    end

    desc "show bundle"
    task :show do
      run "cd #{deploy_to}/current; bundle show"
    end
    
    desc "bundle check"
    task :check do
      run "cd #{deploy_to}/current; bundle check"
    end


  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
crazycode-cap-recipes-0.5.3 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.5.2 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.5.1 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.5.0 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.4.14 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.4.13 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.4.12 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.4.11 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.4.10 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.4.9 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.4.8 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.4.6 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.4.5 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.4.4 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.4.3 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.4.2 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.4.1 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.4.0 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.3.39.3 lib/cap_recipes/tasks/bundler/manage.rb
crazycode-cap-recipes-0.3.39.2 lib/cap_recipes/tasks/bundler/manage.rb