Low commit activity in last 3 years
No release in over a year
Bundling all the gems locally and sending to remote server. For capistrano 3.x
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

This gem allows you to automatically pack all of gems of your project, pack them and transfer directly to the target server. Useful when the target server has no connection to the Internet.

Works with capistrano 3.x. For capistrano 2.x see https://github.com/rudionrails/capistrano-strategy-copy-bundled

You may also like: https://github.com/xuwupeng2000/capistrano-scm-gitcopy

How to use

Gemfile:

group :development do
  gem 'capistrano-bundler'
  gem 'capistrano-copy-bundle'
end

Capfile:

require 'capistrano/bundler'
require 'capistrano3/copybundle'

config/deploy.rb:

append :linked_dirs, 'vendor/cache'
before "bundler:install", "deploy:copy_bundle"

Special thanks

To VimpelCom Ltd. Your fucked up intranet inspired me to make this gem.

Feedback

apsheronets@gmail.com