├── .gitignore ├── README.md ├── behaviours ├── autoIncrementable.js ├── loggable.js ├── softRemovable.js ├── sortable.js ├── timestampable.js └── trackable.js ├── collection-behaviours.js ├── package.js └── versions.json /.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sewdn/meteor-collection-behaviours/HEAD/README.md -------------------------------------------------------------------------------- /behaviours/autoIncrementable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sewdn/meteor-collection-behaviours/HEAD/behaviours/autoIncrementable.js -------------------------------------------------------------------------------- /behaviours/loggable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sewdn/meteor-collection-behaviours/HEAD/behaviours/loggable.js -------------------------------------------------------------------------------- /behaviours/softRemovable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sewdn/meteor-collection-behaviours/HEAD/behaviours/softRemovable.js -------------------------------------------------------------------------------- /behaviours/sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sewdn/meteor-collection-behaviours/HEAD/behaviours/sortable.js -------------------------------------------------------------------------------- /behaviours/timestampable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sewdn/meteor-collection-behaviours/HEAD/behaviours/timestampable.js -------------------------------------------------------------------------------- /behaviours/trackable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sewdn/meteor-collection-behaviours/HEAD/behaviours/trackable.js -------------------------------------------------------------------------------- /collection-behaviours.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sewdn/meteor-collection-behaviours/HEAD/collection-behaviours.js -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sewdn/meteor-collection-behaviours/HEAD/package.js -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sewdn/meteor-collection-behaviours/HEAD/versions.json --------------------------------------------------------------------------------