A simple Capistrano plugin that adds a deeploy task.
Works with Capistrano 3. Does not work with Capistrano 2.
Add this line to your application's Gemfile:
gem 'cap-deeploy'
And then execute:
$ bundle
Or install it yourself as:
$ gem install cap-deeploy
and then add to Capfile
:
require 'capistrano/deeploy'
Now you can call $ bundle exec cap production deeploy
and a deploy should happen.
No need to call $ bundle exec cap production deploy
anymore and why would you want to?
- Fork it ( https://github.com/x0nic/cap-deeploy/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request