AngularJS Foundations

安装todo.module.js

touch  app/assets/javascripts/todo/todo.module.js
(function () {
    'use strict';
    angular.module('app.todo', []);

})();