├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .yo-rc.json ├── LICENSE ├── README.md ├── docs ├── contribute │ ├── contribution_guide.md │ ├── faq.md │ ├── issue_guide.md │ └── mission_statement.md ├── ecosystems │ ├── greenhouse.md │ └── ionic_platform.md ├── guides │ ├── bower_component_usage.md │ ├── build_vars.md │ ├── ci.md │ ├── cors_proxy.md │ ├── development_intro.md │ ├── environments.md │ ├── eslint.md │ ├── file_structure.md │ ├── git_integration.md │ ├── greenhouse.md │ ├── greenhouse_res │ │ ├── 10_rel_install.jpg │ │ ├── 11_rel_login.jpg │ │ ├── 12_rel_menu.jpg │ │ ├── 13_rel_app.jpg │ │ ├── 14_rel_device.jpg │ │ ├── 1_relution_signup.png │ │ ├── 2_gh_create_app.png │ │ ├── 3_gh_project_conf.png │ │ ├── 4_gh_environment.png │ │ ├── 5.1_gh_envfiles.png │ │ ├── 5.2_gh_envfiles.png │ │ ├── 5_gh_envfiles.png │ │ ├── 6.1_gh_build.png │ │ ├── 6_gh_build.png │ │ ├── 7.1_gh_building.png │ │ ├── 7.2_gh_building.png │ │ ├── 7.3_gh_building.png │ │ ├── 7_gh_building.png │ │ ├── 8.1_rel_conf.png │ │ ├── 8_rel_conf.png │ │ ├── 9.1_rel_publish.png │ │ └── 9_rel_publish.png │ ├── gulp_defaults.md │ ├── icons_splash_screens.md │ ├── installation_prerequisites.md │ ├── ionic_style_source.md │ ├── programmatically_change_configxml.md │ ├── questions.md │ ├── sass_integration.md │ ├── sub_generators.md │ ├── testing.md │ └── testing_workflow.md ├── intro │ ├── quick_start.md │ ├── whats_in_the_box.md │ └── why_you_need_it.md └── resources │ ├── logo.png │ └── logo.svg ├── generators ├── app │ ├── index.js │ ├── sources │ │ ├── bower-config.js │ │ ├── cordova-config.js │ │ ├── prompts.js │ │ └── sample-answers.js │ └── templates │ │ ├── .travis.yml │ │ ├── _app.js │ │ ├── _eslintrc_app │ │ ├── _index.html │ │ ├── bowerrc │ │ ├── editorconfig │ │ ├── eslintignore │ │ ├── eslintrc │ │ ├── gitattributes │ │ ├── gitignore │ │ ├── gulp │ │ ├── _injecting.js │ │ ├── building.js │ │ ├── configuring.js │ │ ├── cordova.js │ │ ├── linting.js │ │ ├── testing.js │ │ ├── utils │ │ │ └── Patcher.js │ │ └── watching.js │ │ ├── gulpfile.js │ │ ├── hooks │ │ └── after_prepare │ │ │ └── update_platform_config.js │ │ ├── jenkins.sh │ │ ├── karma.conf.js │ │ ├── package.json │ │ ├── protractor.conf.js │ │ ├── res │ │ ├── android │ │ │ ├── default │ │ │ │ └── icon.png │ │ │ └── set1 │ │ │ │ └── icon.png │ │ └── ios │ │ │ ├── default │ │ │ └── icon.png │ │ │ └── set1 │ │ │ └── icon.png │ │ └── test │ │ ├── karma │ │ └── .eslintrc │ │ └── protractor │ │ └── .eslintrc ├── component │ ├── index.js │ └── templates │ │ ├── _component.html │ │ ├── _component.js │ │ ├── _component.scss │ │ └── _component.spec.js ├── constant │ ├── index.js │ └── templates │ │ └── _constant.js ├── controller │ ├── index.js │ └── templates │ │ ├── _controller.js │ │ └── _controller.spec.js ├── directive │ ├── index.js │ └── templates │ │ ├── _directive.js │ │ └── _directive.spec.js ├── filter │ ├── index.js │ └── templates │ │ ├── _filter.js │ │ └── _filter.spec.js ├── greenhouse │ ├── index.js │ └── templates │ │ └── greenhouse.sh ├── ionic-cloud │ ├── .eslintrc │ ├── index.js │ └── templates │ │ ├── ionic.config.json │ │ ├── user-ctrl.js │ │ ├── user-ctrl.spec.js │ │ └── user.html ├── module │ ├── index.js │ └── templates │ │ ├── _module-debug.spec.js │ │ ├── _module.js │ │ ├── _module.scss │ │ ├── env-dev.json │ │ ├── env-prod.json │ │ └── yo.png ├── pair │ └── index.js ├── service │ ├── index.js │ └── templates │ │ ├── _service.js │ │ └── _service.spec.js └── template │ ├── index.js │ └── templates │ ├── _debug.html │ ├── _list-detail.html │ ├── _list.html │ ├── _menu.html │ ├── _tabs.html │ └── _template.html ├── gulpfile.js ├── package.json ├── test ├── .eslintrc ├── app-prompts.js ├── app-sample-answers.js ├── app.js ├── component.js ├── constant.js ├── controller.js ├── directive.js ├── filter.js ├── greenhouse.js ├── ionic-cloud.js ├── module.js ├── pair.js ├── service.js ├── template.js ├── test-utils-strings.js └── test-utils-utils.js └── utils ├── config.js ├── strings.js └── utils.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/README.md -------------------------------------------------------------------------------- /docs/contribute/contribution_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/contribute/contribution_guide.md -------------------------------------------------------------------------------- /docs/contribute/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/contribute/faq.md -------------------------------------------------------------------------------- /docs/contribute/issue_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/contribute/issue_guide.md -------------------------------------------------------------------------------- /docs/contribute/mission_statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/contribute/mission_statement.md -------------------------------------------------------------------------------- /docs/ecosystems/greenhouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/ecosystems/greenhouse.md -------------------------------------------------------------------------------- /docs/ecosystems/ionic_platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/ecosystems/ionic_platform.md -------------------------------------------------------------------------------- /docs/guides/bower_component_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/bower_component_usage.md -------------------------------------------------------------------------------- /docs/guides/build_vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/build_vars.md -------------------------------------------------------------------------------- /docs/guides/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/ci.md -------------------------------------------------------------------------------- /docs/guides/cors_proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/cors_proxy.md -------------------------------------------------------------------------------- /docs/guides/development_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/development_intro.md -------------------------------------------------------------------------------- /docs/guides/environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/environments.md -------------------------------------------------------------------------------- /docs/guides/eslint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/eslint.md -------------------------------------------------------------------------------- /docs/guides/file_structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/file_structure.md -------------------------------------------------------------------------------- /docs/guides/git_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/git_integration.md -------------------------------------------------------------------------------- /docs/guides/greenhouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse.md -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/10_rel_install.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/10_rel_install.jpg -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/11_rel_login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/11_rel_login.jpg -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/12_rel_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/12_rel_menu.jpg -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/13_rel_app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/13_rel_app.jpg -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/14_rel_device.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/14_rel_device.jpg -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/1_relution_signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/1_relution_signup.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/2_gh_create_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/2_gh_create_app.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/3_gh_project_conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/3_gh_project_conf.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/4_gh_environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/4_gh_environment.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/5.1_gh_envfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/5.1_gh_envfiles.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/5.2_gh_envfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/5.2_gh_envfiles.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/5_gh_envfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/5_gh_envfiles.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/6.1_gh_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/6.1_gh_build.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/6_gh_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/6_gh_build.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/7.1_gh_building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/7.1_gh_building.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/7.2_gh_building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/7.2_gh_building.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/7.3_gh_building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/7.3_gh_building.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/7_gh_building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/7_gh_building.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/8.1_rel_conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/8.1_rel_conf.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/8_rel_conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/8_rel_conf.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/9.1_rel_publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/9.1_rel_publish.png -------------------------------------------------------------------------------- /docs/guides/greenhouse_res/9_rel_publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/greenhouse_res/9_rel_publish.png -------------------------------------------------------------------------------- /docs/guides/gulp_defaults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/gulp_defaults.md -------------------------------------------------------------------------------- /docs/guides/icons_splash_screens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/icons_splash_screens.md -------------------------------------------------------------------------------- /docs/guides/installation_prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/installation_prerequisites.md -------------------------------------------------------------------------------- /docs/guides/ionic_style_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/ionic_style_source.md -------------------------------------------------------------------------------- /docs/guides/programmatically_change_configxml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/programmatically_change_configxml.md -------------------------------------------------------------------------------- /docs/guides/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/questions.md -------------------------------------------------------------------------------- /docs/guides/sass_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/sass_integration.md -------------------------------------------------------------------------------- /docs/guides/sub_generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/sub_generators.md -------------------------------------------------------------------------------- /docs/guides/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/testing.md -------------------------------------------------------------------------------- /docs/guides/testing_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/guides/testing_workflow.md -------------------------------------------------------------------------------- /docs/intro/quick_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/intro/quick_start.md -------------------------------------------------------------------------------- /docs/intro/whats_in_the_box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/intro/whats_in_the_box.md -------------------------------------------------------------------------------- /docs/intro/why_you_need_it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/intro/why_you_need_it.md -------------------------------------------------------------------------------- /docs/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/resources/logo.png -------------------------------------------------------------------------------- /docs/resources/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/docs/resources/logo.svg -------------------------------------------------------------------------------- /generators/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/index.js -------------------------------------------------------------------------------- /generators/app/sources/bower-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/sources/bower-config.js -------------------------------------------------------------------------------- /generators/app/sources/cordova-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/sources/cordova-config.js -------------------------------------------------------------------------------- /generators/app/sources/prompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/sources/prompts.js -------------------------------------------------------------------------------- /generators/app/sources/sample-answers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/sources/sample-answers.js -------------------------------------------------------------------------------- /generators/app/templates/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/.travis.yml -------------------------------------------------------------------------------- /generators/app/templates/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/_app.js -------------------------------------------------------------------------------- /generators/app/templates/_eslintrc_app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/_eslintrc_app -------------------------------------------------------------------------------- /generators/app/templates/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/_index.html -------------------------------------------------------------------------------- /generators/app/templates/bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /generators/app/templates/editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/editorconfig -------------------------------------------------------------------------------- /generators/app/templates/eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/eslintignore -------------------------------------------------------------------------------- /generators/app/templates/eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/eslintrc -------------------------------------------------------------------------------- /generators/app/templates/gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /generators/app/templates/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/gitignore -------------------------------------------------------------------------------- /generators/app/templates/gulp/_injecting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/gulp/_injecting.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/building.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/gulp/building.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/configuring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/gulp/configuring.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/gulp/cordova.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/linting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/gulp/linting.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/testing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/gulp/testing.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/utils/Patcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/gulp/utils/Patcher.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/watching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/gulp/watching.js -------------------------------------------------------------------------------- /generators/app/templates/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/gulpfile.js -------------------------------------------------------------------------------- /generators/app/templates/hooks/after_prepare/update_platform_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/hooks/after_prepare/update_platform_config.js -------------------------------------------------------------------------------- /generators/app/templates/jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/jenkins.sh -------------------------------------------------------------------------------- /generators/app/templates/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/karma.conf.js -------------------------------------------------------------------------------- /generators/app/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/package.json -------------------------------------------------------------------------------- /generators/app/templates/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/protractor.conf.js -------------------------------------------------------------------------------- /generators/app/templates/res/android/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/res/android/default/icon.png -------------------------------------------------------------------------------- /generators/app/templates/res/android/set1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/res/android/set1/icon.png -------------------------------------------------------------------------------- /generators/app/templates/res/ios/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/res/ios/default/icon.png -------------------------------------------------------------------------------- /generators/app/templates/res/ios/set1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/res/ios/set1/icon.png -------------------------------------------------------------------------------- /generators/app/templates/test/karma/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/test/karma/.eslintrc -------------------------------------------------------------------------------- /generators/app/templates/test/protractor/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/app/templates/test/protractor/.eslintrc -------------------------------------------------------------------------------- /generators/component/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/component/index.js -------------------------------------------------------------------------------- /generators/component/templates/_component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/component/templates/_component.html -------------------------------------------------------------------------------- /generators/component/templates/_component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/component/templates/_component.js -------------------------------------------------------------------------------- /generators/component/templates/_component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/component/templates/_component.scss -------------------------------------------------------------------------------- /generators/component/templates/_component.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/component/templates/_component.spec.js -------------------------------------------------------------------------------- /generators/constant/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/constant/index.js -------------------------------------------------------------------------------- /generators/constant/templates/_constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/constant/templates/_constant.js -------------------------------------------------------------------------------- /generators/controller/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/controller/index.js -------------------------------------------------------------------------------- /generators/controller/templates/_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/controller/templates/_controller.js -------------------------------------------------------------------------------- /generators/controller/templates/_controller.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/controller/templates/_controller.spec.js -------------------------------------------------------------------------------- /generators/directive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/directive/index.js -------------------------------------------------------------------------------- /generators/directive/templates/_directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/directive/templates/_directive.js -------------------------------------------------------------------------------- /generators/directive/templates/_directive.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/directive/templates/_directive.spec.js -------------------------------------------------------------------------------- /generators/filter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/filter/index.js -------------------------------------------------------------------------------- /generators/filter/templates/_filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/filter/templates/_filter.js -------------------------------------------------------------------------------- /generators/filter/templates/_filter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/filter/templates/_filter.spec.js -------------------------------------------------------------------------------- /generators/greenhouse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/greenhouse/index.js -------------------------------------------------------------------------------- /generators/greenhouse/templates/greenhouse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/greenhouse/templates/greenhouse.sh -------------------------------------------------------------------------------- /generators/ionic-cloud/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/ionic-cloud/.eslintrc -------------------------------------------------------------------------------- /generators/ionic-cloud/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/ionic-cloud/index.js -------------------------------------------------------------------------------- /generators/ionic-cloud/templates/ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/ionic-cloud/templates/ionic.config.json -------------------------------------------------------------------------------- /generators/ionic-cloud/templates/user-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/ionic-cloud/templates/user-ctrl.js -------------------------------------------------------------------------------- /generators/ionic-cloud/templates/user-ctrl.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/ionic-cloud/templates/user-ctrl.spec.js -------------------------------------------------------------------------------- /generators/ionic-cloud/templates/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/ionic-cloud/templates/user.html -------------------------------------------------------------------------------- /generators/module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/module/index.js -------------------------------------------------------------------------------- /generators/module/templates/_module-debug.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/module/templates/_module-debug.spec.js -------------------------------------------------------------------------------- /generators/module/templates/_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/module/templates/_module.js -------------------------------------------------------------------------------- /generators/module/templates/_module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/module/templates/_module.scss -------------------------------------------------------------------------------- /generators/module/templates/env-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/module/templates/env-dev.json -------------------------------------------------------------------------------- /generators/module/templates/env-prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/module/templates/env-prod.json -------------------------------------------------------------------------------- /generators/module/templates/yo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/module/templates/yo.png -------------------------------------------------------------------------------- /generators/pair/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/pair/index.js -------------------------------------------------------------------------------- /generators/service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/service/index.js -------------------------------------------------------------------------------- /generators/service/templates/_service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/service/templates/_service.js -------------------------------------------------------------------------------- /generators/service/templates/_service.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/service/templates/_service.spec.js -------------------------------------------------------------------------------- /generators/template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/template/index.js -------------------------------------------------------------------------------- /generators/template/templates/_debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/template/templates/_debug.html -------------------------------------------------------------------------------- /generators/template/templates/_list-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/template/templates/_list-detail.html -------------------------------------------------------------------------------- /generators/template/templates/_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/template/templates/_list.html -------------------------------------------------------------------------------- /generators/template/templates/_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/template/templates/_menu.html -------------------------------------------------------------------------------- /generators/template/templates/_tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/template/templates/_tabs.html -------------------------------------------------------------------------------- /generators/template/templates/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/generators/template/templates/_template.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/app-prompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/app-prompts.js -------------------------------------------------------------------------------- /test/app-sample-answers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/app-sample-answers.js -------------------------------------------------------------------------------- /test/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/app.js -------------------------------------------------------------------------------- /test/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/component.js -------------------------------------------------------------------------------- /test/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/constant.js -------------------------------------------------------------------------------- /test/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/controller.js -------------------------------------------------------------------------------- /test/directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/directive.js -------------------------------------------------------------------------------- /test/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/filter.js -------------------------------------------------------------------------------- /test/greenhouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/greenhouse.js -------------------------------------------------------------------------------- /test/ionic-cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/ionic-cloud.js -------------------------------------------------------------------------------- /test/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/module.js -------------------------------------------------------------------------------- /test/pair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/pair.js -------------------------------------------------------------------------------- /test/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/service.js -------------------------------------------------------------------------------- /test/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/template.js -------------------------------------------------------------------------------- /test/test-utils-strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/test-utils-strings.js -------------------------------------------------------------------------------- /test/test-utils-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/test/test-utils-utils.js -------------------------------------------------------------------------------- /utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/utils/config.js -------------------------------------------------------------------------------- /utils/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/utils/strings.js -------------------------------------------------------------------------------- /utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mway-io/generator-m-ionic/HEAD/utils/utils.js --------------------------------------------------------------------------------