Skip to content

Instantly share code, notes, and snippets.

@matsko
Created November 20, 2013 19:18
Show Gist options
  • Save matsko/7569261 to your computer and use it in GitHub Desktop.
Save matsko/7569261 to your computer and use it in GitHub Desktop.
.
├── Gruntfile.js
├── README.md
├── app
│   ├── assets
│   │   ├── app.css
│   │   └── app.js
│   ├── font
│   │   ├── FontAwesome.otf
│   │   ├── font
│   │   │   ├── FontAwesome.otf
│   │   │   ├── fontawesome-webfont.eot
│   │   │   ├── fontawesome-webfont.svg
│   │   │   ├── fontawesome-webfont.ttf
│   │   │   └── fontawesome-webfont.woff
│   │   ├── fontawesome-webfont.eot
│   │   ├── fontawesome-webfont.svg
│   │   ├── fontawesome-webfont.ttf
│   │   └── fontawesome-webfont.woff
│   ├── images
│   │   └── spinner.gif
│   ├── index.html
│   ├── scripts
│   │   ├── app.js
│   │   ├── config
│   │   │   ├── config.js
│   │   │   └── routes.js
│   │   ├── controllers
│   │   │   └── controllers.js
│   │   ├── directives
│   │   │   └── directives.js
│   │   ├── filters
│   │   │   └── filters.js
│   │   ├── lib
│   │   │   └── router.js
│   │   └── services
│   │   └── services.js
│   ├── styles
│   │   ├── app.css
│   │   └── reset.css
│   └── templates
│   ├── partials
│   │   └── youtube_listing_tpl.html
│   └── views
│   ├── home
│   │   └── index_tpl.html
│   ├── other
│   │   └── index_tpl.html
│   └── videos
│   ├── index_tpl.html
│   ├── show_tpl.html
│   └── watched_videos_tpl.html
├── bower.json
├── package.json
└── test
├── e2e
│   ├── controllers
│   │   └── controllersSpec.js
│   ├── directives
│   │   └── directivesSpec.js
│   ├── filters
│   │   └── filtersSpec.js
│   ├── requestsSpec.js
│   ├── routesSpec.js
│   └── templates
│   └── templatesSpec.js
├── karma-e2e.conf.js
├── karma-midway.conf.js
├── karma-shared.conf.js
├── karma-unit.conf.js
├── lib
│   ├── chai-expect.js
│   └── chai-should.js
├── midway
│   ├── appSpec.js
│   ├── controllers
│   │   └── controllersSpec.js
│   ├── directives
│   │   └── directivesSpec.js
│   ├── filters
│   │   └── filtersSpec.js
│   ├── requestsSpec.js
│   ├── routesSpec.js
│   ├── services
│   │   └── serviceSpec.js
│   └── templates
│   └── templatesSpec.js
├── mocha.conf.js
└── unit
├── controllers
│   └── controllersSpec.js
├── directives
│   └── directivesSpec.js
├── filters
│   └── filtersSpec.js
└── services
└── servicesSpec.js
37 directories, 59 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment