├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gruntfile.js ├── MAINTENANCE.md ├── README.md ├── bower.json ├── dist ├── restangular.js ├── restangular.min.js └── restangular.zip ├── karma.conf.js ├── karma.underscore.conf.js ├── license.md ├── package.json ├── src └── restangular.js └── test └── restangularSpec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/MAINTENANCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/bower.json -------------------------------------------------------------------------------- /dist/restangular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/dist/restangular.js -------------------------------------------------------------------------------- /dist/restangular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/dist/restangular.min.js -------------------------------------------------------------------------------- /dist/restangular.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/dist/restangular.zip -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/karma.conf.js -------------------------------------------------------------------------------- /karma.underscore.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/karma.underscore.conf.js -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/package.json -------------------------------------------------------------------------------- /src/restangular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/src/restangular.js -------------------------------------------------------------------------------- /test/restangularSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgonto/restangular/HEAD/test/restangularSpec.js --------------------------------------------------------------------------------