Adam Stomski
Adam Stomski
What do you think about adding a bundler plugin for rbs https://bundler.io/guides/bundler_plugins.html? Would it work if it called `rbs collection install` on `after-install-all` hook?
I'm pretty sure it should be easy to implement here: https://github.com/amberframework/granite/blob/master/src/granite/association_collection.cr something like: ``` user.posts.delete_all ```
I guess the question then is, should granite follow ActiveRecord and add two methods: 1. `destroy_all` - just runs destroy on each record in loop, runs callbacks 2. `delete_all` -...