├── .editorconfig ├── .ember-cli ├── .eslintignore ├── .eslintrc.js ├── .github ├── dependabot.yml └── workflows │ └── nodejs.yml ├── .gitignore ├── .npmignore ├── .watchmanconfig ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── RELEASE.md ├── addon ├── .gitkeep └── helpers │ └── -translate-dynamic-2.js ├── app ├── .gitkeep └── helpers │ └── ember-holy-futuristic-template-namespacing-batman-translate-dynamic-2.js ├── config ├── ember-try.js └── environment.js ├── ember-cli-build.js ├── index.js ├── lib └── namespacing-transform.js ├── node-tests └── ast-transform-test.js ├── package.json ├── testem.js ├── tests ├── dummy │ ├── app │ │ ├── app.js │ │ ├── components │ │ │ └── .gitkeep │ │ ├── controllers │ │ │ └── .gitkeep │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── index.html │ │ ├── models │ │ │ └── .gitkeep │ │ ├── resolver.js │ │ ├── router.js │ │ ├── routes │ │ │ └── .gitkeep │ │ ├── styles │ │ │ └── app.css │ │ └── templates │ │ │ ├── application.hbs │ │ │ └── components │ │ │ └── .gitkeep │ ├── config │ │ ├── environment.js │ │ └── targets.js │ └── public │ │ └── robots.txt ├── helpers │ └── .gitkeep ├── index.html ├── integration │ ├── .gitkeep │ └── components │ │ └── test-namespacing-test.js ├── test-helper.js └── unit │ ├── .gitkeep │ └── services │ └── namespaced-services-test.js └── vendor ├── .gitkeep └── service-inject-4.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/.editorconfig -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/.ember-cli -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/.npmignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/RELEASE.md -------------------------------------------------------------------------------- /addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/helpers/-translate-dynamic-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/addon/helpers/-translate-dynamic-2.js -------------------------------------------------------------------------------- /app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/helpers/ember-holy-futuristic-template-namespacing-batman-translate-dynamic-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/app/helpers/ember-holy-futuristic-template-namespacing-batman-translate-dynamic-2.js -------------------------------------------------------------------------------- /config/ember-try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/config/ember-try.js -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/config/environment.js -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/index.js -------------------------------------------------------------------------------- /lib/namespacing-transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/lib/namespacing-transform.js -------------------------------------------------------------------------------- /node-tests/ast-transform-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/node-tests/ast-transform-test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/package.json -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/testem.js -------------------------------------------------------------------------------- /tests/dummy/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/tests/dummy/app/app.js -------------------------------------------------------------------------------- /tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/tests/dummy/app/index.html -------------------------------------------------------------------------------- /tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/tests/dummy/app/resolver.js -------------------------------------------------------------------------------- /tests/dummy/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/tests/dummy/app/router.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/application.hbs: -------------------------------------------------------------------------------- 1 |

Welcome to Ember

2 | 3 | {{outlet}} -------------------------------------------------------------------------------- /tests/dummy/app/templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/tests/dummy/config/environment.js -------------------------------------------------------------------------------- /tests/dummy/config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/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/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/components/test-namespacing-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/tests/integration/components/test-namespacing-test.js -------------------------------------------------------------------------------- /tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/tests/test-helper.js -------------------------------------------------------------------------------- /tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/services/namespaced-services-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/tests/unit/services/namespaced-services-test.js -------------------------------------------------------------------------------- /vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/service-inject-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwjblue/ember-holy-futuristic-template-namespacing-batman/HEAD/vendor/service-inject-4.js --------------------------------------------------------------------------------