Custom Capistrano tasks abstracted from various Object Lateral deploys
Add this line to your application's Gemfile:
gem "capistrano-ext-ol", require: false, github: "objectlateral/capistrano-ext-ol"
And then execute:
$ bundle
You can pull in specific types of tasks by manually requirig the files at the
top of your config/deploy.rb
:
require "capistrano/ext/ol/config"
require "capistrano/ext/ol/db"
# et cetera
Or, if you want the whole kit-and-kaboodle, require like this:
require "capistrano/ext/ol"
- Fork it
- 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 new Pull Request