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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 13c325f42d7ced860c5e47fee9b6e028baea8fc9351ae67e0bd6e212d97241d9
4
- data.tar.gz: d5c68e1b6ba89d3bf351776413b9fea80ca82ab90b05d39d22130e740a7a924b
3
+ metadata.gz: f7c531626688654510fd97ca3657aaa595bd718d50a48ced16cf4bb9fbf063ca
4
+ data.tar.gz: 7459919a330a85113894507e5993683adb28af3b6467223ccc598c023ab0d945
5
5
  SHA512:
6
- metadata.gz: c0a22c118a19f2ea6c91350801cab7a8a574aee2b4edd02c2c86f8b9408eca6f8a47be47936994215b5516bfc5cdcee436de11ccd67db853a9d4a74d7a39a2f0
7
- data.tar.gz: f4e178712de30116c5b228459f5b11c628f32b7c1a9615a8477f2b4f2b6254ab21adb826ba497962194b455aa4043c4127524cf2994f6f3015b03b15f64927d2
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
- gem 'capistrano', '~> 3.9'
18
- gem 'capistrano-nvm202x', '~> 2.2'
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 'capistrano/nvm'
32
+ require "capistrano/rbenv"
33
+ require "capistrano/nvm" # after rbenv
28
34
 
29
35
 
30
36
  # config/deploy.rb
@@ -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 = '2.2.0'
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}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-nvm202x
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Stana