capistrano-nvm-helper 0.2.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7fc3160290b3ce80167b0b3687fd192a86432e19d1f6dd492b36f7ea98bb327c
4
- data.tar.gz: c9ec0233310bdd156c2203e5a0ca8bab05ae3c39381c5e89d5905a9a20935a50
3
+ metadata.gz: 5dbf7a21641b3aa3cf56f226dcbebf5dc57584b63385a9dfe51dae07c32ce13c
4
+ data.tar.gz: cba85029d2927758da2ab05f86152155ae9aae3d90779d7393a25d62ab193bcf
5
5
  SHA512:
6
- metadata.gz: ff44c9127a203d2db144f2c0d9f4eafb41c8a59066d879ec959e6f74e1f5e0486636f3010aff8db663801cf3ed4a581aedc382f15a0f22a563e3dcdad388d1a9
7
- data.tar.gz: fb8503245de44882c4c3253979c20f87f7a95ff33feba42148e22b01cdf822736859bcd07af911008911445a44754b063aa87ac52c64e9e2e69f930520a2c14b
6
+ metadata.gz: e689859c578483e4c22e7d7cb03269072fea2f3fc8201ba5d9efc0acc47e82caee6c7933883d4926f62d589007f4045273cd064ea05150d9879495b9425c3e41
7
+ data.tar.gz: 7492bf49fee1619e756a3316e611ffa958b266aed890a0a9d952f5ab17aadef4c7a82dbc7285781e76db03587e786f6af6e16ba8c6fa4665dfd01f94ced4e932
data/CHANGELOG.md CHANGED
@@ -3,3 +3,7 @@
3
3
  ## [0.2.0] - 2023-10-28
4
4
 
5
5
  - add NVM setup to Capistrano 3.x
6
+
7
+ ## [0.3.1] - 2023-10-29
8
+
9
+ - remove useless scripts
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- capistrano-nvm-helper (0.2.0)
4
+ capistrano-nvm-helper (0.3.1)
5
5
  capistrano (~> 3.1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  This gem provides idiomatic nvm support for Capistrano 3.x (and 3.x *only*).
4
4
 
5
- Difference between capistrano-nvm: avoid permission issues when multiple users deploy the same application by using different file names in the same directory for each deployer and stage.
5
+ difference between `capistrano-nvm`: avoid permission issues when multiple users deploy the same application by using different file names in the same directory for each deployer and stage.
6
6
 
7
7
  ## Installation
8
8
 
@@ -19,7 +19,7 @@ If bundler is not being used to manage dependencies, install the gem by executin
19
19
  Require in `Capfile` to use the default task:
20
20
 
21
21
  ```ruby
22
- require "capistrano/nvm-helper"
22
+ require "capistrano/nvm"
23
23
  ```
24
24
 
25
25
  Configurable options in `config/deploy.rb`:
@@ -33,7 +33,7 @@ set :nvm_map_bins, %w{node npm yarn webpack}
33
33
 
34
34
  ## Rails
35
35
 
36
- If you want to use nvm in your rails app deployment tasks (like `deploy:assets:precompile`), consider adding `rake` to `nvm_map_bins`.
36
+ If you want to use nvm in your rails app deployment tasks (like `deploy:assets:precompile`), pls adding `rake` to `nvm_map_bins`.
37
37
 
38
38
  ## Contributing
39
39
 
@@ -3,7 +3,7 @@
3
3
  module Capistrano
4
4
  module Nvm
5
5
  module Helper
6
- VERSION = "0.2.0"
6
+ VERSION = "0.3.1"
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-nvm-helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Encore Shao
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-10-28 00:00:00.000000000 Z
11
+ date: 2023-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -67,7 +67,7 @@ files:
67
67
  - Rakefile
68
68
  - capistrano-nvm-helper.gemspec
69
69
  - lib/capistrano-nvm-helper.rb
70
- - lib/capistrano/nvm-helper.rb
70
+ - lib/capistrano/nvm.rb
71
71
  - lib/capistrano/nvm/helper.rb
72
72
  - lib/capistrano/nvm/helper/version.rb
73
73
  - lib/capistrano/tasks/nvm-helper.rake
File without changes