From 47d699bca7363a142deb60d959a544d9ab8cd440 Mon Sep 17 00:00:00 2001 From: Avi Haiat Date: Wed, 10 Jun 2015 01:56:43 +0300 Subject: [PATCH 1/3] feat(app): Add missing npm packages Fixes #28 --- install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install.sh b/install.sh index 431d13e..7fb7c57 100755 --- a/install.sh +++ b/install.sh @@ -346,6 +346,8 @@ if ([[ $choice == *"all"* ]] || [[ $choice == *"Cordova"* ]]); then npm install -g cordova npm install -g phonegap npm install -g ionic + npm install -g ios-sim + npm install -g ios-deploy fi if ([[ $choice == *"all"* ]] || [[ $choice == *"Eslint"* ]]); then npm install -g eslint From 468555ddc6edeae177e153dd9376c88aaa26e9ae Mon Sep 17 00:00:00 2001 From: Avi Haiat Date: Wed, 10 Jun 2015 01:58:15 +0300 Subject: [PATCH 2/3] feat(app): Add cache for travis --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 1c49639..264a0aa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,9 @@ language: objective-c +cache: + directories: + - node_modules + install: - bash install.sh From 5f2bb6175e1eb500ff0c7fc4b41214924695dbb1 Mon Sep 17 00:00:00 2001 From: Avi Haiat Date: Wed, 10 Jun 2015 02:27:40 +0300 Subject: [PATCH 3/3] feat(app): Install rethinkdb Fixes #30 --- install.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 7fb7c57..8ccf94e 100755 --- a/install.sh +++ b/install.sh @@ -62,6 +62,7 @@ inquirer_software() { "iTerm2" "iTerm2" on "LimeChat" "LimeChat" on "Mongo" "Mongodb" on + "Rethinkdb" "Rethinkdb" on "Skype" "Skype" on "Slack" "Slack" on "Spectacle" "Spectacle" on @@ -283,9 +284,17 @@ if ([[ $choice == *"all"* ]] || [[ $choice == *"Mongo"* ]]); then chown -R `whoami` /data echo_title "END INSTALLING MONGO" fi - ############ MONGO ############ +############ RETHINKDB ############ +if ([[ $choice == *"all"* ]] || [[ $choice == *"Rethinkdb"* ]]); then + echo_title "END INSTALLING RETHINKDB" + brew install rethinkdb + ln -sfv /usr/local/opt/rethinkdb/*.plist ~/Library/LaunchAgents + echo_title "END INSTALLING RETHINKDB" +fi +############ RETHINKDB ############ + ############ NVM ############ echo_title "BEGIN INSTALL NVM" curNodeVersion=$(node --version)