David Kimura PRO
Joined 7/18/2015
Drifting Ruby Owner
David Kimura PRO said about 6 years ago on Sorting from Scratch :
  You might be able to do it with this

redirect_to @list, turbolinks: false



David Kimura PRO said about 6 years ago on Progressive Web Applications :
  The episode doesn't use the serviceworker-rails gem for this episode. I'm actually using this technique from this episode on https://www.pingverse.com/ and it seems to work well.





David Kimura PRO said about 6 years ago on Real Time Updates with ActionCable :
  There shouldn't be anything different. However, you would need to set up a Redis instance and connect it to ActionCable in the cable.yml config. 

David Kimura PRO said about 6 years ago on Reusable Ruby on Rails Application Templates :
Thanks for the info   . On Rubidium, I'll add this to the global template generator so that others can simple ignore having to add
run 'spring stop'
but i'll have to play around with it first as if spring isn't included in the project, it could case the script to "randomly" fail. I never saw this issue as I have a dot file in my home folder which omits spring and coffeescript.
cat ~/.railsrc
--skip-spring
--skip-coffee

David Kimura PRO said about 6 years ago on Publish and Subscribe to Events :
ActionCable would be more for server to client interaction and this kind of pub/sub technique would be more for server to server interactions.