capistrano-nvm202x 2.2.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +9 -3
- data/capistrano-nvm202x.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7c531626688654510fd97ca3657aaa595bd718d50a48ced16cf4bb9fbf063ca
|
4
|
+
data.tar.gz: 7459919a330a85113894507e5993683adb28af3b6467223ccc598c023ab0d945
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a22c12ba98635190b7cddc8381659268c0b6cf6b5e5931c367def99fd9f1e040724b08c604bff8290fa1d3af033aea29d80686914799df7697f1d22e6c8dae0a
|
7
|
+
data.tar.gz: 59b30ef5868a1c92ae59a3db87a50c932120f902aac612967d322873db59ad41c190c4a16addaca1923eff1c5bafce9e807c516e54157eea567faad7deaba24f
|
data/README.md
CHANGED
@@ -10,12 +10,17 @@ And also thanks a lot to [capistrano-rbenv](https://github.com/capistrano/rbenv)
|
|
10
10
|
|
11
11
|
Note: this gem is different from [capistrano-nvm](https://github.com/koenpunt/capistrano-nvm). This one doesn't play with `capistrano-rbenv` which was the reason to create `capistrano-nvm202x`.
|
12
12
|
|
13
|
+
Current limitation: should be required after rbenv or after anything that adds environment variables.
|
14
|
+
|
13
15
|
## Installation
|
14
16
|
|
15
17
|
Add this line to your application's Gemfile:
|
16
18
|
|
17
|
-
|
18
|
-
|
19
|
+
~~~ruby
|
20
|
+
gem 'capistrano', '~> 3.11', require: false
|
21
|
+
gem 'capistrano-rbenv', require: false
|
22
|
+
gem 'capistrano-nvm202x', require: false
|
23
|
+
~~~
|
19
24
|
|
20
25
|
And then execute:
|
21
26
|
|
@@ -24,7 +29,8 @@ And then execute:
|
|
24
29
|
## Usage
|
25
30
|
|
26
31
|
# Capfile
|
27
|
-
require
|
32
|
+
require "capistrano/rbenv"
|
33
|
+
require "capistrano/nvm" # after rbenv
|
28
34
|
|
29
35
|
|
30
36
|
# config/deploy.rb
|
data/capistrano-nvm202x.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = "capistrano-nvm202x"
|
7
|
-
gem.version = '
|
7
|
+
gem.version = '3.0.0'
|
8
8
|
gem.authors = ["Ivan Stana", "Kir Shatrov", "Yamashita Yuu"]
|
9
9
|
gem.email = ["^_^@myrtana.sk", "shatrov@me.com", "yamashita@geishatokyo.com"]
|
10
10
|
gem.description = %q{nvm integration for Capistrano}
|