├── .bowerrc ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── karma.conf.js ├── package.json ├── spec └── tests.coffee └── src ├── angular-gravatar.coffee └── md5.js /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallin/angular-gravatar/HEAD/.bowerrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallin/angular-gravatar/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallin/angular-gravatar/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallin/angular-gravatar/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallin/angular-gravatar/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallin/angular-gravatar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallin/angular-gravatar/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallin/angular-gravatar/HEAD/bower.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallin/angular-gravatar/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallin/angular-gravatar/HEAD/package.json -------------------------------------------------------------------------------- /spec/tests.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallin/angular-gravatar/HEAD/spec/tests.coffee -------------------------------------------------------------------------------- /src/angular-gravatar.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallin/angular-gravatar/HEAD/src/angular-gravatar.coffee -------------------------------------------------------------------------------- /src/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallin/angular-gravatar/HEAD/src/md5.js --------------------------------------------------------------------------------