David DeRemer

Results 5 comments of David DeRemer

It'll take you 5 mins to do this. Pretty pleeeeaaaassssee!?

I hacked a solution to this that works reasonably well for partials that are small (e.g., a navbar). I put my partials in their own directory. When my Express app...

I've confirmed that adding "dom" to the "lib" compiler option does fix the compile. Not sure if you want to keep this open or close it. For node implementations, it'd...

+1 When using a has_many (e.g., :events) / belongs_to (e.g., :venues) if you change the venue object set for the event from venue A to venue B, then the event...

Hacky workaround in Events model that seems to be working.... ``` ruby after_save :denormalize_venues def denormalize_venues Venue.where({"events_fields._id" => self._id}).each do |v| v.force_denormalization = true v.save! end end ```