2015-08-30 14:02:02 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e;
|
|
|
|
|
2015-08-30 15:16:36 +02:00
|
|
|
echo "$(tput setaf 136)"
|
|
|
|
echo " Installing dependencies "
|
|
|
|
echo "============================================="
|
|
|
|
echo "$(tput sgr0)" # reset
|
|
|
|
|
2017-05-28 03:32:00 +02:00
|
|
|
npm install gulpjs/gulp.git#4.0 -g
|
2015-08-30 14:02:02 +02:00
|
|
|
npm install
|
2016-04-24 15:31:10 +02:00
|
|
|
|
|
|
|
# Travis does that automatically after selecting ruby
|
|
|
|
#bundle install
|
2015-08-30 15:16:36 +02:00
|
|
|
|
|
|
|
echo "$(tput setaf 64)" # green
|
|
|
|
echo "---------------------------------------------"
|
|
|
|
echo " ✓ done installing dependencies"
|
|
|
|
echo "$(tput sgr0)" # reset
|