Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/koenpunt/capistrano-nvm
nvm support for Capistrano 3.x
https://github.com/koenpunt/capistrano-nvm
capistrano nvm ruby
Last synced: about 11 hours ago
JSON representation
nvm support for Capistrano 3.x
- Host: GitHub
- URL: https://github.com/koenpunt/capistrano-nvm
- Owner: koenpunt
- Created: 2013-11-05T15:55:41.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2024-05-30T19:23:10.000Z (6 months ago)
- Last Synced: 2024-10-20T18:21:54.983Z (26 days ago)
- Topics: capistrano, nvm, ruby
- Language: Ruby
- Homepage:
- Size: 16.6 KB
- Stars: 55
- Watchers: 3
- Forks: 44
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Capistrano::nvm
[nvm](https://github.com/creationix/nvm) support for Capistrano 3.x
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'capistrano', '~> 3.1'
gem 'capistrano-nvm', require: false
```And then execute:
$ bundle install
## Usage
Require in `Capfile` to use the default task:
```ruby
require 'capistrano/nvm'
```Configurable options:
```ruby
set :nvm_type, :user # or :system, depends on your nvm setup
set :nvm_node, 'v0.10.21'
set :nvm_map_bins, %w{node npm yarn}
```If your nvm is located in some custom path, you can use `nvm_custom_path` to set it.
### Rails
If you want to use nvm in your rails app deployment tasks (like `deploy:assets:precompile`),
consider adding `rake` to `nvm_map_bins`.## Contributing
1. Fork it
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 new Pull Request