Merge pull request #413 from berendt/add_newline

Add missing newline at the end of text files
This commit is contained in:
Ilan Biala
2015-02-17 14:13:10 -05:00
34 changed files with 34 additions and 34 deletions

View File

@@ -1 +1 @@
/app/tests
/app/tests

View File

@@ -4,4 +4,4 @@ node_js:
env:
- NODE_ENV=travis
services:
- mongodb
- mongodb

View File

@@ -26,4 +26,4 @@ ENV NODE_ENV development
# Port 3000 for server
# Port 35729 for livereload
EXPOSE 3000 35729
CMD ["grunt"]
CMD ["grunt"]

View File

@@ -2,4 +2,4 @@
module.exports = {
// Development assets
};
};

View File

@@ -6,4 +6,4 @@ module.exports = {
server: ['modules/*/tests/server/**/*.js'],
e2e: ['modules/*/tests/e2e/**/*.js']
}
};
};

View File

@@ -37,4 +37,4 @@ module.exports = {
}
}
}
};
};

2
config/env/test.js vendored
View File

@@ -41,4 +41,4 @@ module.exports = {
}
}
}
};
};

View File

@@ -58,4 +58,4 @@ module.exports = function(app, db) {
});
return server;
};
};

View File

@@ -9,4 +9,4 @@ web:
db:
image: mongo
ports:
- "27017:27017"
- "27017:27017"

View File

@@ -1,4 +1,4 @@
'use strict';
// Use Applicaion configuration module to register a new module
ApplicationConfiguration.registerModule('articles');
ApplicationConfiguration.registerModule('articles');

View File

@@ -55,4 +55,4 @@ angular.module('articles').controller('ArticlesController', ['$scope', '$statePa
});
};
}
]);
]);

View File

@@ -31,4 +31,4 @@ var ArticleSchema = new Schema({
}
});
mongoose.model('Article', ArticleSchema);
mongoose.model('Article', ArticleSchema);

View File

@@ -167,4 +167,4 @@
expect(scope.articles.length).toBe(0);
}));
});
}());
}());

View File

@@ -9,4 +9,4 @@ angular.module('chat').config(['$stateProvider',
templateUrl: 'modules/chat/views/chat.client.view.html'
});
}
]);
]);

View File

@@ -7,4 +7,4 @@
describe('ChatController', function() {
// TODO: Add chat client controller tests
});
}());
}());

View File

@@ -5,4 +5,4 @@
*/
describe('Chat E2E Tests:', function() {
// TODO: Add chat e2e tests
});
});

View File

@@ -5,4 +5,4 @@
*/
describe('Chat Socket Tests:', function() {
// TODO: Add chat socket tests
});
});

View File

@@ -13,4 +13,4 @@ angular.module('core').config(['$stateProvider', '$urlRouterProvider',
templateUrl: 'modules/core/views/home.client.view.html'
});
}
]);
]);

View File

@@ -5,4 +5,4 @@ angular.module('core').controller('HomeController', ['$scope', 'Authentication',
// This provides Authentication context.
$scope.authentication = Authentication;
}
]);
]);

View File

@@ -1,4 +1,4 @@
'use strict';
// Use Applicaion configuration module to register a new module
ApplicationConfiguration.registerModule('core');
ApplicationConfiguration.registerModule('core');

View File

@@ -39,4 +39,4 @@ exports.getErrorMessage = function(err) {
}
return message;
};
};

View File

@@ -5,4 +5,4 @@
<pre>
{{url}} is not a valid path.
</pre>
{% endblock %}
{% endblock %}

View File

@@ -5,4 +5,4 @@
<pre>
{{error}}
</pre>
{% endblock %}
{% endblock %}

View File

@@ -21,4 +21,4 @@
expect(scope.authentication).toBeTruthy();
});
});
})();
})();

View File

@@ -21,4 +21,4 @@
expect(scope.authentication).toBeTruthy();
});
});
})();
})();

View File

@@ -31,4 +31,4 @@ angular.module('users').controller('AuthenticationController', ['$scope', '$http
});
};
}
]);
]);

View File

@@ -41,4 +41,4 @@ angular.module('users').controller('PasswordController', ['$scope', '$stateParam
});
};
}
]);
]);

View File

@@ -9,4 +9,4 @@ angular.module('users').factory('Users', ['$resource',
}
});
}
]);
]);

View File

@@ -35,4 +35,4 @@ module.exports = function() {
});
}
));
};
};

View File

@@ -13,4 +13,4 @@ module.exports = _.extend(
require('./users/users.authorization.server.controller'),
require('./users/users.password.server.controller'),
require('./users/users.profile.server.controller')
);
);

View File

@@ -51,4 +51,4 @@ exports.hasAuthorization = function(roles) {
}
});
};
};
};

View File

@@ -13,4 +13,4 @@
<p>The {{appName}} Support Team</p>
</body>
</html>
</html>

View File

@@ -19,4 +19,4 @@
<p>The {{appName}} Support Team</p>
</body>
</html>
</html>

View File

@@ -115,4 +115,4 @@
expect(scope.error).toBe('Username already exists');
});
});
}());
}());