0.0
No commit activity in last 3 years
No release in over 3 years
Useful tasks for Capistrano
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

 Project Readme

capistrano-misc

Gem Version Build Status

capistrano-misc provides some useful tasks for Capistrano 2.

Installation

Add the library to your Gemfile

group :development do
  gem 'capistrano-misc', :require => false
end

And load it into your deployment script config/deploy.rb

require 'capistrano-misc'

Tasks

Execute tasks

cap misc:tailf

Add task hooks

after 'multistage:ensure', 'misc:guard'
set :guard_env, [:production, :beta] # default :production

before 'deploy:update_code', 'misc:branch'
set :branch, /upstream.*\/master$/ # default all

Contributing

See the contributing guide.

Copyright

Copyright (c) 2014-2014 Daisuke Taniwaki. See LICENSE for details.