2016-03-03 17:21:24 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e;
|
|
|
|
|
2016-06-23 16:23:53 +02:00
|
|
|
echo "$(tput setaf 136)"
|
|
|
|
echo " Installing dependencies "
|
|
|
|
echo "============================================="
|
|
|
|
echo "$(tput sgr0)" # reset
|
|
|
|
|
2017-03-22 16:34:05 +01:00
|
|
|
npm install gulpjs/gulp.git#4.0 -g
|
2016-03-03 17:21:24 +01:00
|
|
|
npm install
|
|
|
|
|
2016-06-23 16:23:53 +02:00
|
|
|
# Travis does that automatically after selecting ruby
|
|
|
|
#bundle install
|
|
|
|
|
|
|
|
echo "$(tput setaf 64)" # green
|
|
|
|
echo "---------------------------------------------"
|
|
|
|
echo " ✓ done installing dependencies"
|
|
|
|
echo "$(tput sgr0)" # reset
|