vps_cli 0.1.25 → 0.1.26

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: 4569afcd73492215f974fac2043a7fdd285a2142cc3a26bf12b51c103d94fc9a
4
- data.tar.gz: 5a54093394a189ca58eb40ec1b71d14923012c48ec7a606be65a261e3162144b
3
+ metadata.gz: b41d6017dd6693d6aada48d6708c1b9e58b9bd03a82df0e599d107789b9769d6
4
+ data.tar.gz: 5c74dbdc280263bf4acc38100580f5d2aee51cfc29aa7f31e6f08ad5c10a82cc
5
5
  SHA512:
6
- metadata.gz: 46b0754a30e8501425bf93c5c893a6ab1fbd1abc682af47bbcd34d5b21ccd6e19174e2df16324b447df15cc1f736ff636aa86ff7e0d43fd5f62104a45d55c6a1
7
- data.tar.gz: 4779e123367f04667c69eb3fcedaa1ddd9a506b98cf5e44b5de85bb7623b775de50ad96265fb91c9247be1445c05880a7e6d7d826a54830207b871c3a3aaf509
6
+ metadata.gz: 8975fbd803a552cae64c8f4fa198e3c792ede5fbd43d4849350d6aebfb5dd6721863144161dc17b3ab618986e349c68e1fc4c5a5d640fffc6b8ec11a0bbedc38
7
+ data.tar.gz: 4870aad781fa1d276fd0585753979d2a273e21587acf98b4a2541fe770cf57e936906e8f9cf8abbfe12fe0ba8a2eb1043a7a85a72c2356c42f7230c1b59678d6
@@ -37,8 +37,8 @@ module VpsCli
37
37
  # @see #add_language_servers
38
38
  # @see #node_js
39
39
  def self.install_non_apt_packages
40
- nvm
41
- phpenv
40
+ # nvm
41
+ # phpenv
42
42
  other_tools
43
43
  neovim_support
44
44
  omz_full_install
@@ -46,7 +46,7 @@ module VpsCli
46
46
  install_tmux_plugin_manager_and_plugins
47
47
  plug_install_vim_neovim
48
48
  install_gems
49
- node_js
49
+ # node_js
50
50
  add_language_servers
51
51
  powerlevel10k
52
52
  eslint
@@ -109,12 +109,12 @@ module VpsCli
109
109
  end
110
110
 
111
111
  # Lots of issues when using npm via apt-get, this seems to fix dependency issues
112
- def self.node_js
113
- Rake.sh('curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -')
114
- Rake.sh('sudo apt-get install -y nodejs')
112
+ # def self.node_js
113
+ # Rake.sh('curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -')
114
+ # Rake.sh('sudo apt-get install -y nodejs')
115
115
 
116
- Rake.sh('sudo npm install -g npm')
117
- end
116
+ # Rake.sh('sudo npm install -g npm')
117
+ # end
118
118
 
119
119
  # adds neovim support via pip3
120
120
  # Also adds neovim via npm for js support
@@ -212,20 +212,21 @@ module VpsCli
212
212
  Rake.sh('npm install -g eslint')
213
213
  end
214
214
 
215
- def self.nvm
216
- nvm_path = ENV['NVM_DIR'] || File.join(Dir.home, '.nvm')
217
- Rake.mkdir_p(nvm_path)
218
- Rake.sh('curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash')
219
- # Set the version
220
- Rake.sh('nvm install 11.15.0 && nvm use 11.15.0')
221
- end
215
+ # def self.nvm
216
+ # nvm_path = ENV['NVM_DIR'] || File.join(Dir.home, '.nvm')
217
+ # Rake.mkdir_p(nvm_path)
218
+ # Rake.sh('curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash')
219
+ # # Set the version
220
+ # # Rake.sh('nvm install 11.15.0')
221
+ # # Rake.sh('nvm use 11.15.0')
222
+ # end
222
223
 
223
224
  # https://github.com/phpenv/phpenv-installer
224
- def self.phpenv
225
- Rake.sh("curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin/phpenv-installer \
226
- | bash")
227
- Rake.sh('phpenv install --skip-existing 7.3.8')
228
- Rake.sh('phpenv global 7.3.8')
229
- end
225
+ # def self.phpenv
226
+ # Rake.sh("curl -L https://raw.githubusercontent.com/phpenv/phpenv-installer/master/bin/phpenv-installer \
227
+ # | bash")
228
+ # Rake.sh('phpenv install --skip-existing 7.3.8')
229
+ # Rake.sh('phpenv global 7.3.8')
230
+ # end
230
231
  end
231
232
  end
@@ -1,3 +1,3 @@
1
1
  module VpsCli
2
- VERSION = "0.1.25"
2
+ VERSION = "0.1.26"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vps_cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.25
4
+ version: 0.1.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - paramagicdev