├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bower.json ├── bower_components └── jquery │ └── dist │ └── jquery.min.js ├── dist ├── databound-standalone.js ├── databound-standalone.min.js └── databound.js ├── doc ├── assets │ ├── behavior.js │ └── style.css └── src │ └── databound.html ├── gulpfile.coffee ├── package.json ├── spec ├── crud │ ├── create.coffee │ ├── destroy.coffee │ ├── find.coffee │ ├── find_by.coffee │ ├── update.coffee │ └── where.coffee ├── errors │ ├── not_found.coffee │ ├── not_permitted.coffee │ └── unrescued.coffee └── spec_helper.coffee └── src └── databound.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/bower.json -------------------------------------------------------------------------------- /bower_components/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/bower_components/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /dist/databound-standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/dist/databound-standalone.js -------------------------------------------------------------------------------- /dist/databound-standalone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/dist/databound-standalone.min.js -------------------------------------------------------------------------------- /dist/databound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/dist/databound.js -------------------------------------------------------------------------------- /doc/assets/behavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/doc/assets/behavior.js -------------------------------------------------------------------------------- /doc/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/doc/assets/style.css -------------------------------------------------------------------------------- /doc/src/databound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/doc/src/databound.html -------------------------------------------------------------------------------- /gulpfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/gulpfile.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/package.json -------------------------------------------------------------------------------- /spec/crud/create.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/spec/crud/create.coffee -------------------------------------------------------------------------------- /spec/crud/destroy.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/spec/crud/destroy.coffee -------------------------------------------------------------------------------- /spec/crud/find.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/spec/crud/find.coffee -------------------------------------------------------------------------------- /spec/crud/find_by.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/spec/crud/find_by.coffee -------------------------------------------------------------------------------- /spec/crud/update.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/spec/crud/update.coffee -------------------------------------------------------------------------------- /spec/crud/where.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/spec/crud/where.coffee -------------------------------------------------------------------------------- /spec/errors/not_found.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/spec/errors/not_found.coffee -------------------------------------------------------------------------------- /spec/errors/not_permitted.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/spec/errors/not_permitted.coffee -------------------------------------------------------------------------------- /spec/errors/unrescued.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/spec/errors/unrescued.coffee -------------------------------------------------------------------------------- /spec/spec_helper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/spec/spec_helper.coffee -------------------------------------------------------------------------------- /src/databound.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nedomas/databound/HEAD/src/databound.coffee --------------------------------------------------------------------------------