Capistrano::n
n support for Capistrano 3.x. This project is a fork of the Capistrano::nvm package.
Installation
Add this line to your application's Gemfile:
gem 'capistrano', '~> 3.1'
gem 'capistrano-n', require: false
And then execute:
$ bundle install
Usage
Require in Capfile
to use the default task:
require 'capistrano/n'
Configurable options:
set :n_type, :user # or :system, depends on your n setup
set :n_node, 'v0.12.14'
set :n_map_bins, %w{node npm}
If your n is located in some custom path, you can use n_custom_path
to set it.
Contributing
- 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