aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/capistrano.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add test for checking langauge of sentences used in source codeAditya Prakash2016-03-091-1/+1
|
* Compatibility with frozen string literalsSamuel Giddins2016-01-311-0/+1
|
* [RuboCop] Enable Style/StringLiteralsSamuel E. Giddins2015-07-151-2/+2
|
* Properly require Capistrano versionSteve Klabnik2013-10-281-0/+1
| | | If you don't do this, `Capistrano::Version` doesn't exist, so this whole thing blows up.
* Simple check const existsanemat2013-08-311-5/+1
|
* Guard from load error 'capistrano/version'sanemat2013-08-311-2/+5
|
* Require version file for checking capistrano versionsanemat2013-08-301-0/+1
| | | | | | | | | | | | | | bundler-1.4.0.pre.1 works fine, but bundler-1.4.0.pre.2 shows error below: ``` $ bundle exec cap production deploy /path/to/bundler-1.4.0.pre.2/lib/bundler/capistrano.rb:7:in `<top (required)>': uninitialized constant Capistrano::Version (NameError) ``` This commit brings this error, so I add require version file. 1d7a7893dfeb85afa25a3a526354b31c85f05dbf bundler: 1.4.0.pre.2 capistrano: 2.14.2
* Don't allow to use bundler/capistrano with cap 3.xKir Shatrov2013-08-161-0/+4
|
* fixes for capistrano integrationAndre Arko2012-05-231-1/+1
| | | | | | | | switch the bundler hook to before "deploy:finalize_update", so that finalize_update will not run if `bundle install` fails. (thanks @leehambley) change from `current_release` to `latest_release`, because both cap and vlad provide more robust directory-finding code behind `latest_release`. (thanks @dontangg) closes #1264
* Run the bundle install earlier in a Capistrano deployment to give other ↵Chris Griego2011-08-091-1/+1
| | | | | | tasks a stable, common hook to use. closes #1300
* lambda up the rake command so it will honor :bundle_cmdAndre Arko2011-04-081-1/+1
|
* should just use fetch directlyAlex Arnell2011-04-061-2/+1
|
* rake tasks should respect bundle_cmd as wellAlex Arnell2011-04-061-1/+2
|
* tell capistrano to run "bundle exec rake"Andre Arko2011-01-181-0/+1
| | | | closes #894
* Refactor :bundle_roles so it works for cap and vlad, expand docsAndre Arko2010-11-021-4/+1
|
* Adding ability to set roles for capistrano bundle:installSteve Hull2010-11-021-1/+3
|
* Fix some whitespaceCarl Lerche2010-09-151-1/+1
|
* Further refactoring of the deployment recipesdbloete2010-09-141-21/+2
|
* Refactored deployment recipesdbloete2010-09-141-14/+4
|
* don't force gemfile to come from latest_releasejgeiger2010-09-081-6/+6
|
* Implement and document the capistrano task bundler_cmd variableRoland Guem2010-08-281-2/+6
|
* Document the capistrano task bundler_install_env variable and add the ↵Chris Griego2010-08-201-15/+13
| | | | --quiet flag
* Fix the documented cap task bundle_dir default, format a bitAndre Arko2010-08-131-7/+7
|
* Harden the capistrano taskChris Griego2010-08-131-6/+28
| | | | | | | | | | * Add a task description compatible with capistrano's brief description support * Exclude the bundle:install task from running on servers that don't have a copy of the release * Make Gemfile configurable * Make bundle_dir allow nil * Make group exclusion configurable, allow nil * Make bundle install arguments configurable similar to deploy:migrate * Prefer the fetch method over dynamic methods to help avoid ambiguous conflicts
* Fix capistrano escaping for realAndre Arko2010-08-121-1/+2
|
* Fixed escaping issue in capistrano. thanks: Lawrence CurtisSantiago Pastorino2010-08-111-1/+1
|
* Update cap taskAndre Arko2010-08-101-15/+7
|
* Adds basic Capistrano task for Bundler. To use it, just require ↵Nicolas Blanco2010-08-091-0/+23
'bundler/capistrano' in your Capistrano deploy file (deploy.rb). Bundler will be activated after each new deployment. Signed-off-by: Carl Lerche <carllerche@mac.com>