updates dependencies and add main-bower-file to gulpfile to concatenate the vendorJs
Refactors gulpfile
(function(){
'use strict';
angular.module('ammico')
.controller('routeClassCtrl', function($scope, $location) {
$scope.isActive = function(route) {
return route === $location.path();
};
});
})();