capistrano-nvm-helper 0.3.0 → 0.3.1

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: 0afe54b6c1b6b4a95580ab37a040391ee49782bc20931c57e9a40f48e32d140f
4
- data.tar.gz: ecdf1613ccca88a197271995da458b001dfa8c3f7356ae5a6ab20f3cd77e89eb
3
+ metadata.gz: 5dbf7a21641b3aa3cf56f226dcbebf5dc57584b63385a9dfe51dae07c32ce13c
4
+ data.tar.gz: cba85029d2927758da2ab05f86152155ae9aae3d90779d7393a25d62ab193bcf
5
5
  SHA512:
6
- metadata.gz: 3cd937635b0478b42c69103b9b8d9326b07f651d98ea4194c28782f70fa0808f75b38883277951b94a2e51d9de27e3bf606e6f68b54eab262a6653283036aa98
7
- data.tar.gz: 90462da5216073b51473b8146d90feea14b4eaa21304ad0fa624a3d8ab6dcc5e170782ee66702d01a34e84cedab7f82d70d1a92aed366605d1f984b586c66754
6
+ metadata.gz: e689859c578483e4c22e7d7cb03269072fea2f3fc8201ba5d9efc0acc47e82caee6c7933883d4926f62d589007f4045273cd064ea05150d9879495b9425c3e41
7
+ data.tar.gz: 7492bf49fee1619e756a3316e611ffa958b266aed890a0a9d952f5ab17aadef4c7a82dbc7285781e76db03587e786f6af6e16ba8c6fa4665dfd01f94ced4e932
data/CHANGELOG.md CHANGED
@@ -4,6 +4,6 @@
4
4
 
5
5
  - add NVM setup to Capistrano 3.x
6
6
 
7
- ## [0.3.0] - 2023-10-29
7
+ ## [0.3.1] - 2023-10-29
8
8
 
9
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.3.0)
4
+ capistrano-nvm-helper (0.3.1)
5
5
  capistrano (~> 3.1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -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`:
@@ -3,7 +3,7 @@
3
3
  module Capistrano
4
4
  module Nvm
5
5
  module Helper
6
- VERSION = "0.3.0"
6
+ VERSION = "0.3.1"
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-nvm-helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Encore Shao
@@ -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