├── .bowerrc ├── .editorconfig ├── .ember-cli ├── .gitignore ├── .jshintrc ├── .travis.yml ├── .watchmanconfig ├── README.md ├── app ├── adapters │ └── application.js ├── app.js ├── components │ ├── .gitkeep │ └── monster-form.js ├── controllers │ ├── .gitkeep │ └── monsters │ │ ├── monster │ │ ├── edit.js │ │ └── show.js │ │ └── new.js ├── helpers │ └── .gitkeep ├── index.html ├── models │ ├── .gitkeep │ └── monster.js ├── resolver.js ├── router.js ├── routes │ ├── .gitkeep │ ├── monsters.js │ └── monsters │ │ └── monster.js ├── styles │ └── app.css ├── templates │ ├── application.hbs │ ├── components │ │ ├── .gitkeep │ │ └── monster-form.hbs │ ├── monsters.hbs │ └── monsters │ │ ├── monster.hbs │ │ ├── monster │ │ ├── edit.hbs │ │ └── show.hbs │ │ └── new.hbs └── transitions.js ├── bower.json ├── config └── environment.js ├── ember-cli-build.js ├── mirage ├── config.js ├── scenarios │ └── default.js └── serializers │ └── application.js ├── package.json ├── public ├── crossdomain.xml └── robots.txt ├── testem.js ├── testem.json ├── tests ├── .jshintrc ├── acceptance │ └── monsters-index-test.js ├── helpers │ ├── destroy-app.js │ ├── module-for-acceptance.js │ ├── resolver.js │ └── start-app.js ├── index.html ├── integration │ ├── .gitkeep │ └── components │ │ └── monster-form-test.js ├── test-helper.js └── unit │ ├── .gitkeep │ └── models │ └── monster-test.js └── vendor └── .gitkeep /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/.bowerrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/.editorconfig -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/.ember-cli -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/.travis.yml -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/README.md -------------------------------------------------------------------------------- /app/adapters/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/adapters/application.js -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/app.js -------------------------------------------------------------------------------- /app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/components/monster-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/components/monster-form.js -------------------------------------------------------------------------------- /app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/monsters/monster/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/controllers/monsters/monster/edit.js -------------------------------------------------------------------------------- /app/controllers/monsters/monster/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/controllers/monsters/monster/show.js -------------------------------------------------------------------------------- /app/controllers/monsters/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/controllers/monsters/new.js -------------------------------------------------------------------------------- /app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/index.html -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/monster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/models/monster.js -------------------------------------------------------------------------------- /app/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/resolver.js -------------------------------------------------------------------------------- /app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/router.js -------------------------------------------------------------------------------- /app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/routes/monsters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/routes/monsters.js -------------------------------------------------------------------------------- /app/routes/monsters/monster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/routes/monsters/monster.js -------------------------------------------------------------------------------- /app/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/styles/app.css -------------------------------------------------------------------------------- /app/templates/application.hbs: -------------------------------------------------------------------------------- 1 |
2 | {{outlet}} 3 |
4 | -------------------------------------------------------------------------------- /app/templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/components/monster-form.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/templates/components/monster-form.hbs -------------------------------------------------------------------------------- /app/templates/monsters.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/templates/monsters.hbs -------------------------------------------------------------------------------- /app/templates/monsters/monster.hbs: -------------------------------------------------------------------------------- 1 | {{liquid-outlet}} 2 | -------------------------------------------------------------------------------- /app/templates/monsters/monster/edit.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/templates/monsters/monster/edit.hbs -------------------------------------------------------------------------------- /app/templates/monsters/monster/show.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/templates/monsters/monster/show.hbs -------------------------------------------------------------------------------- /app/templates/monsters/new.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/templates/monsters/new.hbs -------------------------------------------------------------------------------- /app/transitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/app/transitions.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/bower.json -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/config/environment.js -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /mirage/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/mirage/config.js -------------------------------------------------------------------------------- /mirage/scenarios/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/mirage/scenarios/default.js -------------------------------------------------------------------------------- /mirage/serializers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/mirage/serializers/application.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/package.json -------------------------------------------------------------------------------- /public/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/public/crossdomain.xml -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/testem.js -------------------------------------------------------------------------------- /testem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/testem.json -------------------------------------------------------------------------------- /tests/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/tests/.jshintrc -------------------------------------------------------------------------------- /tests/acceptance/monsters-index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/tests/acceptance/monsters-index-test.js -------------------------------------------------------------------------------- /tests/helpers/destroy-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/tests/helpers/destroy-app.js -------------------------------------------------------------------------------- /tests/helpers/module-for-acceptance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/tests/helpers/module-for-acceptance.js -------------------------------------------------------------------------------- /tests/helpers/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/tests/helpers/resolver.js -------------------------------------------------------------------------------- /tests/helpers/start-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/tests/helpers/start-app.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/components/monster-form-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/tests/integration/components/monster-form-test.js -------------------------------------------------------------------------------- /tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/tests/test-helper.js -------------------------------------------------------------------------------- /tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/models/monster-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffreybiles/crud-2016/HEAD/tests/unit/models/monster-test.js -------------------------------------------------------------------------------- /vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------