escualo 0.3.1 → 0.3.2
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/escualo/bootstrap.rb +2 -2
- data/lib/escualo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5a6d1a8d275abc891953c4f8db0133d6cf91353d
|
|
4
|
+
data.tar.gz: 71d415f4f9d4f8e9e259bd25d5e24089c8c75b75
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b50c6c09300d62837cdafc3c0c92cc71c225b8f3d4366cb766dc410561e214b1f80a41198383469020b1aee59648df3164af11fe91aa65d05a7d1f6cc22c068
|
|
7
|
+
data.tar.gz: b80792c47c97a83168d0668d68f107e3bcdd4f41127f018cd173b5873c32c7ddda0d80273a95ea4ede42b0f9f4ad4ca78a86a36ca101c7f0cfea7012aad67144
|
data/lib/escualo/bootstrap.rb
CHANGED
|
@@ -25,8 +25,8 @@ module Escualo
|
|
|
25
25
|
def self.install_ruby(ssh, options)
|
|
26
26
|
if options.with_rbenv
|
|
27
27
|
ssh.shell.perform! %q{
|
|
28
|
-
curl https://raw.githubusercontent.com/fesplugas/rbenv-installer/master/bin/rbenv-installer | bash
|
|
29
|
-
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
|
|
28
|
+
curl https://raw.githubusercontent.com/fesplugas/rbenv-installer/master/bin/rbenv-installer | bash &&
|
|
29
|
+
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc &&
|
|
30
30
|
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
|
|
31
31
|
}, options
|
|
32
32
|
else
|
data/lib/escualo/version.rb
CHANGED