├── .bowerrc ├── .editorconfig ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE.md ├── README.md ├── bower.json ├── coffeelint.json ├── dist ├── angular-rest-orm.js └── angular-rest-orm.min.js ├── docs ├── content │ └── api │ │ └── index.ngdoc └── html │ └── nav.html ├── env.sh ├── karma └── karma-unit.tpl.js ├── package.json ├── src └── ORM.coffee └── test ├── basic-fields-spec.coffee ├── basic-spec.coffee ├── headers-spec.coffee ├── javascript-spec.js ├── relations-spec.coffee ├── remap-spec.coffee └── transform-response-spec.coffee /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/.bowerrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/bower.json -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/coffeelint.json -------------------------------------------------------------------------------- /dist/angular-rest-orm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/dist/angular-rest-orm.js -------------------------------------------------------------------------------- /dist/angular-rest-orm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/dist/angular-rest-orm.min.js -------------------------------------------------------------------------------- /docs/content/api/index.ngdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/docs/content/api/index.ngdoc -------------------------------------------------------------------------------- /docs/html/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/docs/html/nav.html -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- 1 | export PATH=`pwd`/node_modules/.bin:$PATH 2 | -------------------------------------------------------------------------------- /karma/karma-unit.tpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/karma/karma-unit.tpl.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/package.json -------------------------------------------------------------------------------- /src/ORM.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/src/ORM.coffee -------------------------------------------------------------------------------- /test/basic-fields-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/test/basic-fields-spec.coffee -------------------------------------------------------------------------------- /test/basic-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/test/basic-spec.coffee -------------------------------------------------------------------------------- /test/headers-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/test/headers-spec.coffee -------------------------------------------------------------------------------- /test/javascript-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/test/javascript-spec.js -------------------------------------------------------------------------------- /test/relations-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/test/relations-spec.coffee -------------------------------------------------------------------------------- /test/remap-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/test/remap-spec.coffee -------------------------------------------------------------------------------- /test/transform-response-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/angular-rest-orm/HEAD/test/transform-response-spec.coffee --------------------------------------------------------------------------------