Light Mode

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

sheharyarn/capistrano-rake

Repository files navigation

capistrano-rake

Invoke any rake task on a remote server using capistrano. Installing this gem adds a new capistrano task invoke:rake that will allow you to execute rake tasks remotely. Only supports Capistrano 3 and above.

Installation

Add the gem to your Gemfile after setting up Capistrano, preferably in the :development group:

group :development do
gem 'capistrano', require: false
gem 'capistrano-rake', require: false
end

Then bundle and add it to your Capfile:

# Capfile

require 'capistrano/rake'

Usage

To execute a rake task on a remote server, you need to pass that task's name to the invoke:rake capistrano task like this:

$ cap stage invoke:rake TASK=some:rake_task

# Examples
$ cap staging invoke:rake TASK=db:seed
$ cap production invoke:rake TASK=paperclip:refresh

Configuration

You can optionally specify the capistrano roles for the rake task (Defaults to :app):

# Defaults to [:app]
set :rake_roles, [:db, :app]

Contributing

  1. Fork it ( https://github.com/sheharyarn/capistrano-rake/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

License

The gem is available as open source under the terms of the MIT License.

About

Execute rake tasks on remote servers (Only Capistrano 3+)

Topics

Resources

Readme

License

MIT license

Stars

Watchers

Forks

Packages

Contributors