├── .bowerrc ├── .editorconfig ├── .gitignore ├── .jscsrc ├── .jshintrc ├── LICENSE ├── README.md ├── bower.json ├── gulp.png ├── karma.conf.js ├── package.json └── src ├── client ├── app │ ├── app.module.js │ ├── blocks │ │ ├── exception │ │ │ ├── exception-handler.provider.js │ │ │ ├── exception-handler.provider.spec.js │ │ │ ├── exception.js │ │ │ └── exception.module.js │ │ ├── logger │ │ │ ├── logger.js │ │ │ └── logger.module.js │ │ └── router │ │ │ ├── router-helper.provider.js │ │ │ └── router.module.js │ ├── core │ │ ├── config.js │ │ ├── constants.js │ │ ├── core.module.js │ │ ├── dataservice.js │ │ └── dataservice.spec.js │ ├── customers │ │ ├── customer-detail.controller.js │ │ ├── customer-detail.controller.spec.js │ │ ├── customer-detail.html │ │ ├── customers.controller.js │ │ ├── customers.controller.spec.js │ │ ├── customers.html │ │ ├── customers.module.js │ │ ├── customers.route.js │ │ └── customers.route.spec.js │ ├── dashboard │ │ ├── dashboard.controller.js │ │ ├── dashboard.controller.spec.js │ │ ├── dashboard.html │ │ ├── dashboard.module.js │ │ ├── dashboard.route.js │ │ └── dashboard.route.spec.js │ ├── layout │ │ ├── ht-sidebar.directive.js │ │ ├── ht-sidebar.directive.spec.js │ │ ├── ht-top-nav.directive.js │ │ ├── ht-top-nav.html │ │ ├── layout.module.js │ │ ├── shell.controller.js │ │ ├── shell.controller.spec.js │ │ ├── shell.html │ │ ├── sidebar.controller.js │ │ ├── sidebar.controller.spec.js │ │ └── sidebar.html │ └── widgets │ │ ├── ht-img-person.directive.js │ │ ├── ht-widget-header.directive.js │ │ ├── widget-header.html │ │ └── widgets.module.js ├── images │ ├── AngularJS-small.png │ ├── busy.gif │ ├── gulp-tiny.png │ └── photos │ │ ├── aaron_skonnard.jpg │ │ ├── anant-narayanan.png │ │ ├── ari-lerner.png │ │ ├── ben-clinkinbeard.png │ │ ├── ben-teese.png │ │ ├── brad_green.jpg │ │ ├── brian-ford.png │ │ ├── burke-holland.png │ │ ├── cat.jpg │ │ ├── christian-lilley.png │ │ ├── colleen_papa.jpg │ │ ├── craig_shoemaker.jpg │ │ ├── dan_wahlin.jpg │ │ ├── dave-smith.png │ │ ├── dave_ward.jpg │ │ ├── elijah_manor.jpg │ │ ├── eric_barnard.jpg │ │ ├── esteban_garcia.jpg │ │ ├── felix_fanboi.jpg │ │ ├── fritz_onion.jpg │ │ ├── glenn_block.jpg │ │ ├── hans_fjallemark.jpg │ │ ├── howard_dierking.jpg │ │ ├── igor_minar.jpg │ │ ├── james-deboer.png │ │ ├── jason-aden.png │ │ ├── jason_salmond.jpg │ │ ├── jeff-cross.png │ │ ├── jesse_liberty.jpg │ │ ├── jim_cowart.jpg │ │ ├── john-lindquist.png │ │ ├── john_papa.jpg │ │ ├── john_smith.jpg │ │ ├── john_sonmez.jpg │ │ ├── julie-ralph.png │ │ ├── julie_lerman.jpg │ │ ├── keith_sparkjoy.jpg │ │ ├── lukas-ruebbelke.png │ │ ├── mads_kristensen.jpg │ │ ├── matias-niemela.png │ │ ├── max-lynch.png │ │ ├── megan_russell.jpg │ │ ├── mike_callaghan.jpg │ │ ├── mike_woodring.jpg │ │ ├── misko-hevery.png │ │ ├── pete_brown.jpg │ │ ├── rey_bango.jpg │ │ ├── rob_eisenberg.jpg │ │ ├── ron-evans.png │ │ ├── ryan_niemeyer.jpg │ │ ├── scott_guthrie.jpg │ │ ├── scott_hanselman.jpg │ │ ├── scott_hunter.jpg │ │ ├── sean-hess.png │ │ ├── sharon-diorio.png │ │ ├── shawn_wildermuth.jpg │ │ ├── silvano-luciani.png │ │ ├── steve_sanderson.jpg │ │ ├── sue_menot.jpg │ │ ├── thomas-burleson.png │ │ ├── tim_heuer.jpg │ │ ├── unknown_person.jpg │ │ ├── vojta-jina.png │ │ ├── ward-bell.png │ │ └── ward_bell.jpg ├── index.html ├── specs.html ├── styles │ └── styles.less ├── test-helpers │ ├── bind-polyfill.js │ └── mock-data.js └── tests │ └── server-integration │ └── dataservice.spec.js └── server ├── app.js ├── data └── customers.json ├── favicon.ico └── routes ├── index.js └── utils ├── errorHandler.js └── jsonfileservice.js /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/.bowerrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/bower.json -------------------------------------------------------------------------------- /gulp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/gulp.png -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/package.json -------------------------------------------------------------------------------- /src/client/app/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/app.module.js -------------------------------------------------------------------------------- /src/client/app/blocks/exception/exception-handler.provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/blocks/exception/exception-handler.provider.js -------------------------------------------------------------------------------- /src/client/app/blocks/exception/exception-handler.provider.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/blocks/exception/exception-handler.provider.spec.js -------------------------------------------------------------------------------- /src/client/app/blocks/exception/exception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/blocks/exception/exception.js -------------------------------------------------------------------------------- /src/client/app/blocks/exception/exception.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/blocks/exception/exception.module.js -------------------------------------------------------------------------------- /src/client/app/blocks/logger/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/blocks/logger/logger.js -------------------------------------------------------------------------------- /src/client/app/blocks/logger/logger.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/blocks/logger/logger.module.js -------------------------------------------------------------------------------- /src/client/app/blocks/router/router-helper.provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/blocks/router/router-helper.provider.js -------------------------------------------------------------------------------- /src/client/app/blocks/router/router.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/blocks/router/router.module.js -------------------------------------------------------------------------------- /src/client/app/core/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/core/config.js -------------------------------------------------------------------------------- /src/client/app/core/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/core/constants.js -------------------------------------------------------------------------------- /src/client/app/core/core.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/core/core.module.js -------------------------------------------------------------------------------- /src/client/app/core/dataservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/core/dataservice.js -------------------------------------------------------------------------------- /src/client/app/core/dataservice.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/core/dataservice.spec.js -------------------------------------------------------------------------------- /src/client/app/customers/customer-detail.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/customers/customer-detail.controller.js -------------------------------------------------------------------------------- /src/client/app/customers/customer-detail.controller.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/customers/customer-detail.controller.spec.js -------------------------------------------------------------------------------- /src/client/app/customers/customer-detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/customers/customer-detail.html -------------------------------------------------------------------------------- /src/client/app/customers/customers.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/customers/customers.controller.js -------------------------------------------------------------------------------- /src/client/app/customers/customers.controller.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/customers/customers.controller.spec.js -------------------------------------------------------------------------------- /src/client/app/customers/customers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/customers/customers.html -------------------------------------------------------------------------------- /src/client/app/customers/customers.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/customers/customers.module.js -------------------------------------------------------------------------------- /src/client/app/customers/customers.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/customers/customers.route.js -------------------------------------------------------------------------------- /src/client/app/customers/customers.route.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/customers/customers.route.spec.js -------------------------------------------------------------------------------- /src/client/app/dashboard/dashboard.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/dashboard/dashboard.controller.js -------------------------------------------------------------------------------- /src/client/app/dashboard/dashboard.controller.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/dashboard/dashboard.controller.spec.js -------------------------------------------------------------------------------- /src/client/app/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/dashboard/dashboard.html -------------------------------------------------------------------------------- /src/client/app/dashboard/dashboard.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/dashboard/dashboard.module.js -------------------------------------------------------------------------------- /src/client/app/dashboard/dashboard.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/dashboard/dashboard.route.js -------------------------------------------------------------------------------- /src/client/app/dashboard/dashboard.route.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/dashboard/dashboard.route.spec.js -------------------------------------------------------------------------------- /src/client/app/layout/ht-sidebar.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/layout/ht-sidebar.directive.js -------------------------------------------------------------------------------- /src/client/app/layout/ht-sidebar.directive.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/layout/ht-sidebar.directive.spec.js -------------------------------------------------------------------------------- /src/client/app/layout/ht-top-nav.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/layout/ht-top-nav.directive.js -------------------------------------------------------------------------------- /src/client/app/layout/ht-top-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/layout/ht-top-nav.html -------------------------------------------------------------------------------- /src/client/app/layout/layout.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/layout/layout.module.js -------------------------------------------------------------------------------- /src/client/app/layout/shell.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/layout/shell.controller.js -------------------------------------------------------------------------------- /src/client/app/layout/shell.controller.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/layout/shell.controller.spec.js -------------------------------------------------------------------------------- /src/client/app/layout/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/layout/shell.html -------------------------------------------------------------------------------- /src/client/app/layout/sidebar.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/layout/sidebar.controller.js -------------------------------------------------------------------------------- /src/client/app/layout/sidebar.controller.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/layout/sidebar.controller.spec.js -------------------------------------------------------------------------------- /src/client/app/layout/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/layout/sidebar.html -------------------------------------------------------------------------------- /src/client/app/widgets/ht-img-person.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/widgets/ht-img-person.directive.js -------------------------------------------------------------------------------- /src/client/app/widgets/ht-widget-header.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/widgets/ht-widget-header.directive.js -------------------------------------------------------------------------------- /src/client/app/widgets/widget-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/widgets/widget-header.html -------------------------------------------------------------------------------- /src/client/app/widgets/widgets.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/app/widgets/widgets.module.js -------------------------------------------------------------------------------- /src/client/images/AngularJS-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/AngularJS-small.png -------------------------------------------------------------------------------- /src/client/images/busy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/busy.gif -------------------------------------------------------------------------------- /src/client/images/gulp-tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/gulp-tiny.png -------------------------------------------------------------------------------- /src/client/images/photos/aaron_skonnard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/aaron_skonnard.jpg -------------------------------------------------------------------------------- /src/client/images/photos/anant-narayanan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/anant-narayanan.png -------------------------------------------------------------------------------- /src/client/images/photos/ari-lerner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/ari-lerner.png -------------------------------------------------------------------------------- /src/client/images/photos/ben-clinkinbeard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/ben-clinkinbeard.png -------------------------------------------------------------------------------- /src/client/images/photos/ben-teese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/ben-teese.png -------------------------------------------------------------------------------- /src/client/images/photos/brad_green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/brad_green.jpg -------------------------------------------------------------------------------- /src/client/images/photos/brian-ford.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/brian-ford.png -------------------------------------------------------------------------------- /src/client/images/photos/burke-holland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/burke-holland.png -------------------------------------------------------------------------------- /src/client/images/photos/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/cat.jpg -------------------------------------------------------------------------------- /src/client/images/photos/christian-lilley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/christian-lilley.png -------------------------------------------------------------------------------- /src/client/images/photos/colleen_papa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/colleen_papa.jpg -------------------------------------------------------------------------------- /src/client/images/photos/craig_shoemaker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/craig_shoemaker.jpg -------------------------------------------------------------------------------- /src/client/images/photos/dan_wahlin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/dan_wahlin.jpg -------------------------------------------------------------------------------- /src/client/images/photos/dave-smith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/dave-smith.png -------------------------------------------------------------------------------- /src/client/images/photos/dave_ward.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/dave_ward.jpg -------------------------------------------------------------------------------- /src/client/images/photos/elijah_manor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/elijah_manor.jpg -------------------------------------------------------------------------------- /src/client/images/photos/eric_barnard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/eric_barnard.jpg -------------------------------------------------------------------------------- /src/client/images/photos/esteban_garcia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/esteban_garcia.jpg -------------------------------------------------------------------------------- /src/client/images/photos/felix_fanboi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/felix_fanboi.jpg -------------------------------------------------------------------------------- /src/client/images/photos/fritz_onion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/fritz_onion.jpg -------------------------------------------------------------------------------- /src/client/images/photos/glenn_block.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/glenn_block.jpg -------------------------------------------------------------------------------- /src/client/images/photos/hans_fjallemark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/hans_fjallemark.jpg -------------------------------------------------------------------------------- /src/client/images/photos/howard_dierking.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/howard_dierking.jpg -------------------------------------------------------------------------------- /src/client/images/photos/igor_minar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/igor_minar.jpg -------------------------------------------------------------------------------- /src/client/images/photos/james-deboer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/james-deboer.png -------------------------------------------------------------------------------- /src/client/images/photos/jason-aden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/jason-aden.png -------------------------------------------------------------------------------- /src/client/images/photos/jason_salmond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/jason_salmond.jpg -------------------------------------------------------------------------------- /src/client/images/photos/jeff-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/jeff-cross.png -------------------------------------------------------------------------------- /src/client/images/photos/jesse_liberty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/jesse_liberty.jpg -------------------------------------------------------------------------------- /src/client/images/photos/jim_cowart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/jim_cowart.jpg -------------------------------------------------------------------------------- /src/client/images/photos/john-lindquist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/john-lindquist.png -------------------------------------------------------------------------------- /src/client/images/photos/john_papa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/john_papa.jpg -------------------------------------------------------------------------------- /src/client/images/photos/john_smith.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/john_smith.jpg -------------------------------------------------------------------------------- /src/client/images/photos/john_sonmez.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/john_sonmez.jpg -------------------------------------------------------------------------------- /src/client/images/photos/julie-ralph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/julie-ralph.png -------------------------------------------------------------------------------- /src/client/images/photos/julie_lerman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/julie_lerman.jpg -------------------------------------------------------------------------------- /src/client/images/photos/keith_sparkjoy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/keith_sparkjoy.jpg -------------------------------------------------------------------------------- /src/client/images/photos/lukas-ruebbelke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/lukas-ruebbelke.png -------------------------------------------------------------------------------- /src/client/images/photos/mads_kristensen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/mads_kristensen.jpg -------------------------------------------------------------------------------- /src/client/images/photos/matias-niemela.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/matias-niemela.png -------------------------------------------------------------------------------- /src/client/images/photos/max-lynch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/max-lynch.png -------------------------------------------------------------------------------- /src/client/images/photos/megan_russell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/megan_russell.jpg -------------------------------------------------------------------------------- /src/client/images/photos/mike_callaghan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/mike_callaghan.jpg -------------------------------------------------------------------------------- /src/client/images/photos/mike_woodring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/mike_woodring.jpg -------------------------------------------------------------------------------- /src/client/images/photos/misko-hevery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/misko-hevery.png -------------------------------------------------------------------------------- /src/client/images/photos/pete_brown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/pete_brown.jpg -------------------------------------------------------------------------------- /src/client/images/photos/rey_bango.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/rey_bango.jpg -------------------------------------------------------------------------------- /src/client/images/photos/rob_eisenberg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/rob_eisenberg.jpg -------------------------------------------------------------------------------- /src/client/images/photos/ron-evans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/ron-evans.png -------------------------------------------------------------------------------- /src/client/images/photos/ryan_niemeyer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/ryan_niemeyer.jpg -------------------------------------------------------------------------------- /src/client/images/photos/scott_guthrie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/scott_guthrie.jpg -------------------------------------------------------------------------------- /src/client/images/photos/scott_hanselman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/scott_hanselman.jpg -------------------------------------------------------------------------------- /src/client/images/photos/scott_hunter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/scott_hunter.jpg -------------------------------------------------------------------------------- /src/client/images/photos/sean-hess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/sean-hess.png -------------------------------------------------------------------------------- /src/client/images/photos/sharon-diorio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/sharon-diorio.png -------------------------------------------------------------------------------- /src/client/images/photos/shawn_wildermuth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/shawn_wildermuth.jpg -------------------------------------------------------------------------------- /src/client/images/photos/silvano-luciani.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/silvano-luciani.png -------------------------------------------------------------------------------- /src/client/images/photos/steve_sanderson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/steve_sanderson.jpg -------------------------------------------------------------------------------- /src/client/images/photos/sue_menot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/sue_menot.jpg -------------------------------------------------------------------------------- /src/client/images/photos/thomas-burleson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/thomas-burleson.png -------------------------------------------------------------------------------- /src/client/images/photos/tim_heuer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/tim_heuer.jpg -------------------------------------------------------------------------------- /src/client/images/photos/unknown_person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/unknown_person.jpg -------------------------------------------------------------------------------- /src/client/images/photos/vojta-jina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/vojta-jina.png -------------------------------------------------------------------------------- /src/client/images/photos/ward-bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/ward-bell.png -------------------------------------------------------------------------------- /src/client/images/photos/ward_bell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/images/photos/ward_bell.jpg -------------------------------------------------------------------------------- /src/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/index.html -------------------------------------------------------------------------------- /src/client/specs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/specs.html -------------------------------------------------------------------------------- /src/client/styles/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/styles/styles.less -------------------------------------------------------------------------------- /src/client/test-helpers/bind-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/test-helpers/bind-polyfill.js -------------------------------------------------------------------------------- /src/client/test-helpers/mock-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/test-helpers/mock-data.js -------------------------------------------------------------------------------- /src/client/tests/server-integration/dataservice.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/client/tests/server-integration/dataservice.spec.js -------------------------------------------------------------------------------- /src/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/server/app.js -------------------------------------------------------------------------------- /src/server/data/customers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/server/data/customers.json -------------------------------------------------------------------------------- /src/server/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/server/favicon.ico -------------------------------------------------------------------------------- /src/server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/server/routes/index.js -------------------------------------------------------------------------------- /src/server/routes/utils/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/server/routes/utils/errorHandler.js -------------------------------------------------------------------------------- /src/server/routes/utils/jsonfileservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpapa/pluralsight-gulp/HEAD/src/server/routes/utils/jsonfileservice.js --------------------------------------------------------------------------------