From c22c888de9522bc67cf176c08a8f023566183f33 Mon Sep 17 00:00:00 2001 From: Liran Tal Date: Wed, 5 Aug 2015 14:23:40 +0300 Subject: [PATCH 1/2] updating grunt 'force' option to default/force it to false so that we can fail any task that is failing and thus fail the build in case of any issues in tests, jshint conventions, and so on --- gruntfile.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/gruntfile.js b/gruntfile.js index 39dfceee6e..112bb3d118 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -207,9 +207,6 @@ module.exports = function (grunt) { // Load NPM tasks require('load-grunt-tasks')(grunt); - // Making grunt default to force in order not to break the project. - grunt.option('force', true); - // Make sure upload directory exists grunt.task.registerTask('mkdir:upload', 'Task that makes sure upload directory exists.', function () { // Get the callback From dd254e16494fc61d2c884910181890ec477afe0b Mon Sep 17 00:00:00 2001 From: Liran Tal Date: Wed, 5 Aug 2015 19:00:52 +0300 Subject: [PATCH 2/2] updating travis ci build to install required ruby gem dependencies --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index eef75fbf97..6a739b843d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,3 +6,6 @@ env: - NODE_ENV=travis services: - mongodb +before_install: + - gem update --system + - gem install sass --version "=3.3.7"