Sha256: 02ec6efc2160a7e47674884fea2b319df2e4d6e7a03e9963e93391c5a6b8aa81
Contents?: true
Size: 457 Bytes
Versions: 27
Compression:
Stored size: 457 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 before "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
27 entries across 27 versions & 1 rubygems