Sha256: 245ab9463abf75aa8d965f33134b695339af933a68c83627cc5f11a1200d4855

Contents?: true

Size: 332 Bytes

Versions: 6

Compression:

Stored size: 332 Bytes

Contents

namespace :deploy do

  desc 'Bundle'
  task :bundle do
    on roles :web do
      within release_path do
        execute :bundle, "--gemfile #{release_path}/Gemfile --deployment --binstubs #{shared_path}/bin --path #{shared_path}/bundle --without development test cucumber"
      end
    end
  end

  before :finalize, :bundle
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
capistrano-3.0.0.pre6 lib/capistrano/tasks/bundler.rake
capistrano-3.0.0.pre5 lib/capistrano/tasks/bundler.rake
capistrano-3.0.0.pre4 lib/capistrano/tasks/bundler.rake
capistrano-3.0.0.pre3 lib/capistrano/tasks/bundler.rake
capistrano-3.0.0.pre2 lib/capistrano/tasks/bundler.rake
capistrano-3.0.0.pre lib/capistrano/tasks/bundler.rake