codelation-cli 0.0.8 → 0.0.9
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/codelation/development/dependencies.rb +6 -3
- data/lib/codelation/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: 37aec9d08ccbbf79220b8fc5294129e82dba3891
|
|
4
|
+
data.tar.gz: 25aee76b717ed10aa3ccfbf27b49b82f39aa58f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 502afa8fb4c6d3604bff70a2618a9194142cfadb80e2c6bd75bde6e434086f95a5d9cf99e1de2057ef9dae3519fdc3606ab4efbdd4f0eb2cac39408acbf5c1fe
|
|
7
|
+
data.tar.gz: 0fce7efdbf2d4ef12b20f6351acda047d67e70acdd5f2a1119fc13f415d384ac278e18ac768fbbe47a9491c836f9c967ca5f4f93b0fb10998facde6d9d014787
|
|
@@ -6,13 +6,16 @@ module Codelation
|
|
|
6
6
|
|
|
7
7
|
# Install dependencies for building and installing everything else.
|
|
8
8
|
def install_dependencies
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
unless `which brew`.length > 1
|
|
10
|
+
print_command("Installing Homebrew from http://brew.sh")
|
|
11
|
+
print_command("Re-run `codelation developer:install after Homebrew has been installed`")
|
|
12
|
+
sleep 3
|
|
13
|
+
exec('ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"')
|
|
14
|
+
end
|
|
11
15
|
|
|
12
16
|
run_command("brew install bash")
|
|
13
17
|
run_command("brew install git")
|
|
14
18
|
run_command("brew install imagemagick")
|
|
15
|
-
run_command("brew install make")
|
|
16
19
|
run_command("brew install openssl")
|
|
17
20
|
run_command("brew install v8")
|
|
18
21
|
run_command("brew install wget")
|
data/lib/codelation/version.rb
CHANGED