├── .editorconfig ├── .gitignore ├── .idea ├── .gitignore ├── .name ├── angular-hy-res.iml ├── encodings.xml ├── jsLibraryMappings.xml ├── libraries │ └── angular_hy_res_node_modules.xml ├── modules.xml ├── scopes │ └── scope_settings.xml └── vcs.xml ├── .jshintrc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bower.json ├── collection-json.js ├── core.js ├── dist ├── angular-hy-res-full.js ├── angular-hy-res-full.min.js ├── collection-json.js ├── collection-json.min.js ├── core.js ├── core.min.js ├── hal.js ├── hal.min.js ├── index.js ├── index.min.js ├── json.js ├── json.min.js ├── link-header.js ├── link-header.min.js ├── siren.js ├── siren.min.js ├── text.js └── text.min.js ├── gulpfile.js ├── hal.js ├── index.js ├── json.js ├── karma.conf.js ├── link-header.js ├── package.json ├── siren.js ├── test ├── .jshintrc └── spec │ ├── collection-json-tests.js │ ├── hal-tests.js │ ├── json-tests.js │ ├── link-headers-tests.js │ ├── resource-tests.js │ ├── siren-tests.js │ └── text-tests.js └── text.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | workspace.xml 2 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | angular-hy-res -------------------------------------------------------------------------------- /.idea/angular-hy-res.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/.idea/angular-hy-res.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/libraries/angular_hy_res_node_modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/.idea/libraries/angular_hy_res_node_modules.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/bower.json -------------------------------------------------------------------------------- /collection-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/collection-json.js -------------------------------------------------------------------------------- /core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/core.js -------------------------------------------------------------------------------- /dist/angular-hy-res-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/angular-hy-res-full.js -------------------------------------------------------------------------------- /dist/angular-hy-res-full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/angular-hy-res-full.min.js -------------------------------------------------------------------------------- /dist/collection-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/collection-json.js -------------------------------------------------------------------------------- /dist/collection-json.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/collection-json.min.js -------------------------------------------------------------------------------- /dist/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/core.js -------------------------------------------------------------------------------- /dist/core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/core.min.js -------------------------------------------------------------------------------- /dist/hal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/hal.js -------------------------------------------------------------------------------- /dist/hal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/hal.min.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/index.min.js -------------------------------------------------------------------------------- /dist/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/json.js -------------------------------------------------------------------------------- /dist/json.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/json.min.js -------------------------------------------------------------------------------- /dist/link-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/link-header.js -------------------------------------------------------------------------------- /dist/link-header.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/link-header.min.js -------------------------------------------------------------------------------- /dist/siren.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/siren.js -------------------------------------------------------------------------------- /dist/siren.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/siren.min.js -------------------------------------------------------------------------------- /dist/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/text.js -------------------------------------------------------------------------------- /dist/text.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/dist/text.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/gulpfile.js -------------------------------------------------------------------------------- /hal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/hal.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/index.js -------------------------------------------------------------------------------- /json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/json.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/karma.conf.js -------------------------------------------------------------------------------- /link-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/link-header.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/package.json -------------------------------------------------------------------------------- /siren.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/siren.js -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/test/.jshintrc -------------------------------------------------------------------------------- /test/spec/collection-json-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/test/spec/collection-json-tests.js -------------------------------------------------------------------------------- /test/spec/hal-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/test/spec/hal-tests.js -------------------------------------------------------------------------------- /test/spec/json-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/test/spec/json-tests.js -------------------------------------------------------------------------------- /test/spec/link-headers-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/test/spec/link-headers-tests.js -------------------------------------------------------------------------------- /test/spec/resource-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/test/spec/resource-tests.js -------------------------------------------------------------------------------- /test/spec/siren-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/test/spec/siren-tests.js -------------------------------------------------------------------------------- /test/spec/text-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/test/spec/text-tests.js -------------------------------------------------------------------------------- /text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petejohanson/angular-hy-res/HEAD/text.js --------------------------------------------------------------------------------