bin_install 0.0.16 → 0.0.17
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/lib/bin_install/ruby/rbenv.rb +0 -2
- data/lib/bin_install/version.rb +1 -1
- data/lib/bin_install/zsh/oh_my_zsh.rb +0 -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: 8dccf599eec32c7878d456470520dd65a209ed014d2e4011a99d69d0a502d2c4
|
4
|
+
data.tar.gz: 5c648939f73958d3b5c0e5209dd6fa5217d625b8d1c0b9d9937da455a432b518
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ef5c49d0cd8ec0884d0305477a66fbb9710b389356aebca306b6a007ce07bf027660fc8c4ab7d3beabd800f8374283b9fe91aeda6944bce08edecf2a1e7f50a
|
7
|
+
data.tar.gz: 96e726e24a63c8aa311c046612e8e81fca48d06e93a797cb4d304eb1799c37ed5c67e83f443658340b75ca7316f847b051dafdef32d57721ce8d58efb0b80a8d
|
@@ -30,7 +30,6 @@ module BinInstall
|
|
30
30
|
puts "Ruby #{version} is already installed. Skipping.".blue
|
31
31
|
else
|
32
32
|
system("rbenv install #{version}")
|
33
|
-
reload_shell!
|
34
33
|
end
|
35
34
|
else
|
36
35
|
puts 'Unknown Ruby version. Create .ruby-version file.'
|
@@ -46,7 +45,6 @@ module BinInstall
|
|
46
45
|
puts "Ruby #{version} is already installed. Skipping.".blue
|
47
46
|
else
|
48
47
|
BinInstall.system!("rbenv install #{version}")
|
49
|
-
reload_shell!
|
50
48
|
end
|
51
49
|
else
|
52
50
|
abort('Unknown Ruby version. Create .ruby-version file.'.red)
|
data/lib/bin_install/version.rb
CHANGED
@@ -29,7 +29,6 @@ module BinInstall
|
|
29
29
|
return if installed?
|
30
30
|
puts 'Warning Oh My Zsh requires reloading the shell.'.yellow
|
31
31
|
puts 'After Oh My Zsh finishes installing.'.red
|
32
|
-
puts 'Close this window and restart your shell session.'.red
|
33
32
|
puts "\n"
|
34
33
|
puts 'Rerun the installer with:'
|
35
34
|
puts '$ bin/install'.cyan
|