├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin └── ember-cli-migrator ├── lib ├── ember-migrator.js ├── helper-visitor.js ├── migrator-visitor.js └── typed-export.js ├── package.json └── test ├── common_js-debug-test.js ├── common_js-test.js ├── custom-app-name-test.js ├── ember-rails-test.js ├── fixtures ├── common_js │ ├── input │ │ ├── application.js │ │ └── controllers │ │ │ ├── comment_activity.js │ │ │ ├── preserve_comments.js │ │ │ └── with_mixin.js │ └── output │ │ ├── application.js │ │ └── controllers │ │ ├── comment-activity.js │ │ ├── preserve-comments.js │ │ └── with-mixin.js ├── custom_app_name │ ├── input │ │ └── models │ │ │ └── comment_activity.js │ └── output │ │ └── models │ │ └── comment-activity.js ├── ember-rails │ ├── input │ │ └── application.js │ └── output │ │ └── application.js ├── helpers │ ├── input │ │ └── app │ │ │ └── helpers │ │ │ └── reprint.js │ └── output │ │ └── app │ │ └── helpers │ │ └── reprint.js └── vanilla │ ├── input │ ├── application.js │ ├── components │ │ └── kiwi-phone.js │ ├── controllers │ │ ├── comment_activity.js │ │ ├── preserve_comments.js │ │ └── with_mixin.js │ ├── mixins │ │ ├── coffee_mixin.js.coffee │ │ └── useful.js │ ├── models │ │ ├── comment_activity.js │ │ ├── comment_activity_should_ignore.js.erb │ │ ├── comment_activity_with_ds.js │ │ ├── comment_activity_with_em.js │ │ ├── comment_activity_with_path_for_type.js │ │ ├── extended_comment_activity.js │ │ ├── no_import.js │ │ └── user_model_with_serializer.js │ ├── router.js │ ├── routes │ │ ├── index_route.js │ │ └── one_and_two_route.js │ ├── serializers │ │ └── comment_activity.js │ ├── services │ │ └── seattle-alert.js │ ├── store.js │ ├── templates │ │ ├── atemplate.handlebars │ │ └── components │ │ │ └── anothertemplate.hbs │ ├── transforms │ │ └── objecttransform.js │ ├── unknown_type │ │ ├── known_type.js │ │ ├── misc.js │ │ └── misc_long_name.js │ └── views │ │ ├── comment_activity.js │ │ ├── duplicate_name.js │ │ ├── reopen_view.js │ │ ├── should_be_in_templates.handlebars │ │ └── use_duplicates.js │ └── output │ ├── adapters │ └── application.js │ ├── application.js │ ├── components │ └── kiwi-phone.js │ ├── controllers │ ├── comment-activity.js │ ├── preserve-comments.js │ └── with-mixin.js │ ├── mixins │ ├── known-type.js │ └── useful.js │ ├── models │ ├── comment-activity-with-ds.js │ ├── comment-activity-with-em.js │ ├── comment-activity-with-path-for-type.js │ ├── comment-activity.js │ ├── extended-comment-activity.js │ ├── no-import.js │ └── user.js │ ├── nonjs │ ├── mixins │ │ └── coffee-mixin.js.coffee │ └── models │ │ └── comment-activity-should-ignore.js.erb │ ├── router.js │ ├── routes │ ├── index.js │ ├── one.js │ └── two.js │ ├── serializers │ ├── comment-activity.js │ └── user.js │ ├── services │ └── seattle-alert.js │ ├── templates │ ├── atemplate.handlebars │ ├── components │ │ └── anothertemplate.hbs │ └── views │ │ └── should-be-in-templates.handlebars │ ├── transforms │ └── object.js │ ├── unknown-type │ ├── misc-long-name.js │ └── misc.js │ └── views │ ├── comment-activity.js │ ├── duplicate-name-x.js │ ├── duplicate-name.js │ ├── reopen.js │ ├── some-unknown-type.js │ └── use-duplicates.js ├── mocha.opts ├── models-test.js └── test_helper.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/README.md -------------------------------------------------------------------------------- /bin/ember-cli-migrator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/bin/ember-cli-migrator -------------------------------------------------------------------------------- /lib/ember-migrator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/lib/ember-migrator.js -------------------------------------------------------------------------------- /lib/helper-visitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/lib/helper-visitor.js -------------------------------------------------------------------------------- /lib/migrator-visitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/lib/migrator-visitor.js -------------------------------------------------------------------------------- /lib/typed-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/lib/typed-export.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/package.json -------------------------------------------------------------------------------- /test/common_js-debug-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/common_js-debug-test.js -------------------------------------------------------------------------------- /test/common_js-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/common_js-test.js -------------------------------------------------------------------------------- /test/custom-app-name-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/custom-app-name-test.js -------------------------------------------------------------------------------- /test/ember-rails-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/ember-rails-test.js -------------------------------------------------------------------------------- /test/fixtures/common_js/input/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/common_js/input/application.js -------------------------------------------------------------------------------- /test/fixtures/common_js/input/controllers/comment_activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/common_js/input/controllers/comment_activity.js -------------------------------------------------------------------------------- /test/fixtures/common_js/input/controllers/preserve_comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/common_js/input/controllers/preserve_comments.js -------------------------------------------------------------------------------- /test/fixtures/common_js/input/controllers/with_mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/common_js/input/controllers/with_mixin.js -------------------------------------------------------------------------------- /test/fixtures/common_js/output/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/common_js/output/application.js -------------------------------------------------------------------------------- /test/fixtures/common_js/output/controllers/comment-activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/common_js/output/controllers/comment-activity.js -------------------------------------------------------------------------------- /test/fixtures/common_js/output/controllers/preserve-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/common_js/output/controllers/preserve-comments.js -------------------------------------------------------------------------------- /test/fixtures/common_js/output/controllers/with-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/common_js/output/controllers/with-mixin.js -------------------------------------------------------------------------------- /test/fixtures/custom_app_name/input/models/comment_activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/custom_app_name/input/models/comment_activity.js -------------------------------------------------------------------------------- /test/fixtures/custom_app_name/output/models/comment-activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/custom_app_name/output/models/comment-activity.js -------------------------------------------------------------------------------- /test/fixtures/ember-rails/input/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/ember-rails/input/application.js -------------------------------------------------------------------------------- /test/fixtures/ember-rails/output/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/ember-rails/output/application.js -------------------------------------------------------------------------------- /test/fixtures/helpers/input/app/helpers/reprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/helpers/input/app/helpers/reprint.js -------------------------------------------------------------------------------- /test/fixtures/helpers/output/app/helpers/reprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/helpers/output/app/helpers/reprint.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/application.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/components/kiwi-phone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/components/kiwi-phone.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/controllers/comment_activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/controllers/comment_activity.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/controllers/preserve_comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/controllers/preserve_comments.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/controllers/with_mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/controllers/with_mixin.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/mixins/coffee_mixin.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/mixins/coffee_mixin.js.coffee -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/mixins/useful.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/mixins/useful.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/models/comment_activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/models/comment_activity.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/models/comment_activity_should_ignore.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/models/comment_activity_should_ignore.js.erb -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/models/comment_activity_with_ds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/models/comment_activity_with_ds.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/models/comment_activity_with_em.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/models/comment_activity_with_em.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/models/comment_activity_with_path_for_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/models/comment_activity_with_path_for_type.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/models/extended_comment_activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/models/extended_comment_activity.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/models/no_import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/models/no_import.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/models/user_model_with_serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/models/user_model_with_serializer.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/router.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/routes/index_route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/routes/index_route.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/routes/one_and_two_route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/routes/one_and_two_route.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/serializers/comment_activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/serializers/comment_activity.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/services/seattle-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/services/seattle-alert.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/store.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/templates/atemplate.handlebars: -------------------------------------------------------------------------------- 1 | {{outlet}} 2 | -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/templates/components/anothertemplate.hbs: -------------------------------------------------------------------------------- 1 | {{outlet}} 2 | -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/transforms/objecttransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/transforms/objecttransform.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/unknown_type/known_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/unknown_type/known_type.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/unknown_type/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/unknown_type/misc.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/unknown_type/misc_long_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/unknown_type/misc_long_name.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/views/comment_activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/views/comment_activity.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/views/duplicate_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/views/duplicate_name.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/views/reopen_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/views/reopen_view.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/views/should_be_in_templates.handlebars: -------------------------------------------------------------------------------- 1 |

This should be moved to templates folder.

2 | -------------------------------------------------------------------------------- /test/fixtures/vanilla/input/views/use_duplicates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/input/views/use_duplicates.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/adapters/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/adapters/application.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/application.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/components/kiwi-phone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/components/kiwi-phone.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/controllers/comment-activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/controllers/comment-activity.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/controllers/preserve-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/controllers/preserve-comments.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/controllers/with-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/controllers/with-mixin.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/mixins/known-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/mixins/known-type.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/mixins/useful.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/mixins/useful.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/models/comment-activity-with-ds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/models/comment-activity-with-ds.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/models/comment-activity-with-em.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/models/comment-activity-with-em.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/models/comment-activity-with-path-for-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/models/comment-activity-with-path-for-type.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/models/comment-activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/models/comment-activity.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/models/extended-comment-activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/models/extended-comment-activity.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/models/no-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/models/no-import.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/models/user.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/nonjs/mixins/coffee-mixin.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/nonjs/mixins/coffee-mixin.js.coffee -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/nonjs/models/comment-activity-should-ignore.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/nonjs/models/comment-activity-should-ignore.js.erb -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/router.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/routes/index.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/routes/one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/routes/one.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/routes/two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/routes/two.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/serializers/comment-activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/serializers/comment-activity.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/serializers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/serializers/user.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/services/seattle-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/services/seattle-alert.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/templates/atemplate.handlebars: -------------------------------------------------------------------------------- 1 | {{outlet}} 2 | -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/templates/components/anothertemplate.hbs: -------------------------------------------------------------------------------- 1 | {{outlet}} 2 | -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/templates/views/should-be-in-templates.handlebars: -------------------------------------------------------------------------------- 1 |

This should be moved to templates folder.

2 | -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/transforms/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/transforms/object.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/unknown-type/misc-long-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/unknown-type/misc-long-name.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/unknown-type/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/unknown-type/misc.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/views/comment-activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/views/comment-activity.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/views/duplicate-name-x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/views/duplicate-name-x.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/views/duplicate-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/views/duplicate-name.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/views/reopen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/views/reopen.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/views/some-unknown-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/views/some-unknown-type.js -------------------------------------------------------------------------------- /test/fixtures/vanilla/output/views/use-duplicates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/fixtures/vanilla/output/views/use-duplicates.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | 2 | --ui=bdd 3 | -------------------------------------------------------------------------------- /test/models-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/models-test.js -------------------------------------------------------------------------------- /test/test_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetanley/ember-cli-migrator/HEAD/test/test_helper.js --------------------------------------------------------------------------------