Sha256: ab05a1935d7a85e48d4d5286c894576891d7c598fb9b3f6e720ba1b38fe473ed
Contents?: true
Size: 456 Bytes
Versions: 26
Compression:
Stored size: 456 Bytes
Contents
# Capistrano task for Bundler. # # Just add "require 'bundler/capistrano'" in your Capistrano deploy.rb, and # Bundler will be activated after each new deployment. require 'bundler/deployment' Capistrano::Configuration.instance(:must_exist).load do after "deploy:finalize_update", "bundle:install" Bundler::Deployment.define_task(self, :task, :except => { :no_release => true }) set :rake, lambda { "#{fetch(:bundle_cmd, "bundle")} exec rake" } end
Version data entries
26 entries across 26 versions & 4 rubygems