Is there something like this for Rails?
Yeah I think so if I grok what this is doing...
One interesting approach I came across recently was: https://github.com/chrismccord/sync
11–12 of 12 posts
Is there something like this for Rails?
One interesting approach I came across recently was: https://github.com/chrismccord/sync
This seems to really help bridge a gap in django's toolbox. Working with async actions with pretty much anything other than celery processes is pretty painful. That said I'm not sure I'm a huge fan of tying the events directly to the models, I think I'd rather be able to define the events separately and call the event-firing methods via on save / on delete model methods if I wanted to the model to fire events. Seems…