Sha256: 9066c6ac39f49c367f8e3c9c82d19fb4262d90c45bd0841faf6ad8e609f85f5d

Contents?: true

Size: 452 Bytes

Versions: 10

Compression:

Stored size: 452 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:update_code", "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

10 entries across 10 versions & 1 rubygems

Version Path
bundler-1.0.17 lib/bundler/capistrano.rb
bundler-1.1.pre.7 lib/bundler/capistrano.rb
bundler-1.1.pre.5 lib/bundler/capistrano.rb
bundler-1.0.15 lib/bundler/capistrano.rb
bundler-1.0.14 lib/bundler/capistrano.rb
bundler-1.1.pre.4 lib/bundler/capistrano.rb
bundler-1.0.13 lib/bundler/capistrano.rb
bundler-1.1.pre.3 lib/bundler/capistrano.rb
bundler-1.1.pre.2 lib/bundler/capistrano.rb
bundler-1.0.12 lib/bundler/capistrano.rb