├── .bowerrc ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── README.md ├── app ├── app.js ├── components │ ├── current-queue-blip.js │ └── run-loop-queue.js ├── controllers │ └── application.js ├── models │ └── stubbed_ember.js ├── router.js ├── routes │ └── application.js ├── styles │ └── app.scss └── templates │ ├── application.hbs │ └── components │ ├── current-queue-blip.hbs │ └── run-loop-queue.hbs ├── bower.json ├── karma.conf.js ├── package.json ├── public ├── assets │ └── .gitkeep └── index.html ├── tasks ├── helpers.js ├── locking.js └── options │ ├── clean.js │ ├── coffee.js │ ├── compass.js │ ├── concat_sourcemap.js │ ├── connect.js │ ├── copy.js │ ├── cssmin.js │ ├── dom_munger.js │ ├── emberTemplates.js │ ├── emblem.js │ ├── jshint.js │ ├── karma.js │ ├── less.js │ ├── rev.js │ ├── sass.js │ ├── stylus.js │ ├── transpile.js │ ├── usemin.js │ ├── useminPrepare.js │ └── watch.js ├── tests ├── acceptance │ └── index_test.js ├── index.html ├── test_helper.js ├── test_loader.js └── unit │ ├── .gitkeep │ └── routes │ └── index_test.js └── vendor └── loader.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "vendor" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/README.md -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/app/app.js -------------------------------------------------------------------------------- /app/components/current-queue-blip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/app/components/current-queue-blip.js -------------------------------------------------------------------------------- /app/components/run-loop-queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/app/components/run-loop-queue.js -------------------------------------------------------------------------------- /app/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/app/controllers/application.js -------------------------------------------------------------------------------- /app/models/stubbed_ember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/app/models/stubbed_ember.js -------------------------------------------------------------------------------- /app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/app/router.js -------------------------------------------------------------------------------- /app/routes/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/app/routes/application.js -------------------------------------------------------------------------------- /app/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/app/styles/app.scss -------------------------------------------------------------------------------- /app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/app/templates/application.hbs -------------------------------------------------------------------------------- /app/templates/components/current-queue-blip.hbs: -------------------------------------------------------------------------------- 1 | {{! TODO: remove this unnecessary file}} 2 | -------------------------------------------------------------------------------- /app/templates/components/run-loop-queue.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/app/templates/components/run-loop-queue.hbs -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/bower.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/public/index.html -------------------------------------------------------------------------------- /tasks/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/helpers.js -------------------------------------------------------------------------------- /tasks/locking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/locking.js -------------------------------------------------------------------------------- /tasks/options/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/clean.js -------------------------------------------------------------------------------- /tasks/options/coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/coffee.js -------------------------------------------------------------------------------- /tasks/options/compass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/compass.js -------------------------------------------------------------------------------- /tasks/options/concat_sourcemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/concat_sourcemap.js -------------------------------------------------------------------------------- /tasks/options/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/connect.js -------------------------------------------------------------------------------- /tasks/options/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/copy.js -------------------------------------------------------------------------------- /tasks/options/cssmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/cssmin.js -------------------------------------------------------------------------------- /tasks/options/dom_munger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/dom_munger.js -------------------------------------------------------------------------------- /tasks/options/emberTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/emberTemplates.js -------------------------------------------------------------------------------- /tasks/options/emblem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/emblem.js -------------------------------------------------------------------------------- /tasks/options/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/jshint.js -------------------------------------------------------------------------------- /tasks/options/karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/karma.js -------------------------------------------------------------------------------- /tasks/options/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/less.js -------------------------------------------------------------------------------- /tasks/options/rev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/rev.js -------------------------------------------------------------------------------- /tasks/options/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/sass.js -------------------------------------------------------------------------------- /tasks/options/stylus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/stylus.js -------------------------------------------------------------------------------- /tasks/options/transpile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/transpile.js -------------------------------------------------------------------------------- /tasks/options/usemin.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | html: ['dist/index.html'], 3 | }; 4 | -------------------------------------------------------------------------------- /tasks/options/useminPrepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/useminPrepare.js -------------------------------------------------------------------------------- /tasks/options/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tasks/options/watch.js -------------------------------------------------------------------------------- /tests/acceptance/index_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tests/acceptance/index_test.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/test_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tests/test_helper.js -------------------------------------------------------------------------------- /tests/test_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tests/test_loader.js -------------------------------------------------------------------------------- /tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/routes/index_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/tests/unit/routes/index_test.js -------------------------------------------------------------------------------- /vendor/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machty/ember-run-loop-visual/HEAD/vendor/loader.js --------------------------------------------------------------------------------