├── .editorconfig ├── .ember-cli ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .travis.yml ├── .watchmanconfig ├── CHANGELOG.md ├── LICENSE ├── README.md ├── addon ├── .gitkeep └── index.js ├── app └── .gitkeep ├── config ├── ember-try.js └── environment.js ├── ember-cli-build.js ├── index.js ├── package.json ├── testem.js ├── tests ├── .eslintrc.js ├── dummy │ ├── app │ │ ├── app.js │ │ ├── components │ │ │ ├── .gitkeep │ │ │ └── benchmarks-runner.js │ │ ├── computeds │ │ │ ├── filter-by.js │ │ │ ├── service-based.js │ │ │ └── shout.js │ │ ├── controllers │ │ │ ├── .gitkeep │ │ │ └── index.js │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── index.html │ │ ├── models │ │ │ └── .gitkeep │ │ ├── resolver.js │ │ ├── router.js │ │ ├── routes │ │ │ └── .gitkeep │ │ ├── services │ │ │ └── state-keeper.js │ │ ├── styles │ │ │ └── app.css │ │ └── templates │ │ │ ├── application.hbs │ │ │ ├── benchmarks.hbs │ │ │ ├── components │ │ │ ├── .gitkeep │ │ │ ├── benchmarks-runner.hbs │ │ │ └── loading-spinner.hbs │ │ │ └── index.hbs │ ├── config │ │ ├── environment.js │ │ └── targets.js │ └── public │ │ └── robots.txt ├── helpers │ └── .gitkeep ├── index.html ├── integration │ └── .gitkeep ├── test-helper.js └── unit │ ├── .gitkeep │ ├── class-based-computed-property-test.js │ └── controllers │ └── index-test.js ├── vendor └── .gitkeep └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/.editorconfig -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/.ember-cli -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/.travis.yml -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 0.0.1 2 | 3 | initial release 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/README.md -------------------------------------------------------------------------------- /addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/addon/index.js -------------------------------------------------------------------------------- /app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/ember-try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/config/ember-try.js -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/config/environment.js -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | name: 'ember-classy-computed' 5 | }; 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/package.json -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/testem.js -------------------------------------------------------------------------------- /tests/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: 'simplabs/configs/ember-qunit', 3 | }; 4 | -------------------------------------------------------------------------------- /tests/dummy/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/dummy/app/app.js -------------------------------------------------------------------------------- /tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/components/benchmarks-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/dummy/app/components/benchmarks-runner.js -------------------------------------------------------------------------------- /tests/dummy/app/computeds/filter-by.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/dummy/app/computeds/filter-by.js -------------------------------------------------------------------------------- /tests/dummy/app/computeds/service-based.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/dummy/app/computeds/service-based.js -------------------------------------------------------------------------------- /tests/dummy/app/computeds/shout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/dummy/app/computeds/shout.js -------------------------------------------------------------------------------- /tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/dummy/app/controllers/index.js -------------------------------------------------------------------------------- /tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/dummy/app/index.html -------------------------------------------------------------------------------- /tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/dummy/app/resolver.js -------------------------------------------------------------------------------- /tests/dummy/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/dummy/app/router.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/services/state-keeper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/dummy/app/services/state-keeper.js -------------------------------------------------------------------------------- /tests/dummy/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/application.hbs: -------------------------------------------------------------------------------- 1 |

Welcome to Ember

2 | 3 | {{outlet}} -------------------------------------------------------------------------------- /tests/dummy/app/templates/benchmarks.hbs: -------------------------------------------------------------------------------- 1 | {{benchmarks-runner}} -------------------------------------------------------------------------------- /tests/dummy/app/templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/components/benchmarks-runner.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/dummy/app/templates/components/benchmarks-runner.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/components/loading-spinner.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/dummy/app/templates/components/loading-spinner.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/dummy/app/templates/index.hbs -------------------------------------------------------------------------------- /tests/dummy/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/dummy/config/environment.js -------------------------------------------------------------------------------- /tests/dummy/config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/dummy/config/targets.js -------------------------------------------------------------------------------- /tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/test-helper.js -------------------------------------------------------------------------------- /tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/class-based-computed-property-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/unit/class-based-computed-property-test.js -------------------------------------------------------------------------------- /tests/unit/controllers/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/tests/unit/controllers/index-test.js -------------------------------------------------------------------------------- /vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainmatter/ember-classy-computed/HEAD/yarn.lock --------------------------------------------------------------------------------