escualo 1.0.0 → 1.0.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 +4 -4
- data/lib/escualo/bootstrap.rb +2 -2
- data/lib/escualo/script.rb +1 -1
- data/lib/escualo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6417e0fb1dfd74df4ef3b7e5233315a16caa1544
|
|
4
|
+
data.tar.gz: c51650e52e78d735151e6babe0f1c7e0184a605c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 078af849118e0ad2ebfa9434694d6b97eab7eec4ba82a6324d83a071d55adb5b81acf4c5a18bcad35c160bf5494804c3f4e6e3b4403772226710e520ce4408d1
|
|
7
|
+
data.tar.gz: 27ec0752d8bea6e3cea4fd15a64b9ea2f53a56359032b7bfcf8f732383089dc51bb1cf73bbb5e395eb6715c45a7528866b29e3f054527d21784ab4f0d2ef9d32
|
data/lib/escualo/bootstrap.rb
CHANGED
|
@@ -2,7 +2,6 @@ module Escualo
|
|
|
2
2
|
module Bootstrap
|
|
3
3
|
def self.install_base(ssh, options)
|
|
4
4
|
ssh.shell.perform! %q{
|
|
5
|
-
apt-get purge libruby* -y &&
|
|
6
5
|
apt-get install -y \
|
|
7
6
|
autoconf \
|
|
8
7
|
bison \
|
|
@@ -19,6 +18,7 @@ module Escualo
|
|
|
19
18
|
end
|
|
20
19
|
|
|
21
20
|
def self.install_ruby(ssh, options)
|
|
21
|
+
ssh.shell.perform! 'apt-get purge libruby* -y', options
|
|
22
22
|
if options.with_rbenv
|
|
23
23
|
ssh.shell.perform! %q{
|
|
24
24
|
curl https://raw.githubusercontent.com/fesplugas/rbenv-installer/master/bin/rbenv-installer | bash &&
|
|
@@ -29,7 +29,7 @@ module Escualo
|
|
|
29
29
|
else
|
|
30
30
|
ssh.shell.perform! %Q{
|
|
31
31
|
apt-get install software-properties-common -y &&
|
|
32
|
-
apt-add-repository #{Escualo::PPA.for 'brightbox/ruby-ng'} &&
|
|
32
|
+
apt-add-repository '#{Escualo::PPA.for 'brightbox/ruby-ng'}' &&
|
|
33
33
|
apt-get update &&
|
|
34
34
|
apt-get install -y ruby2.3 ruby2.3-dev
|
|
35
35
|
}, options
|
data/lib/escualo/script.rb
CHANGED
data/lib/escualo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: escualo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Franco Leonardo Bulgarelli
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-12-
|
|
11
|
+
date: 2016-12-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: commander
|