David Kimura PRO
Joined 7/18/2015
Drifting Ruby Owner
David Kimura PRO said over 6 years ago on Delayed::Job Progress update :
This episode basically covers this kind of functionality. https://www.driftingruby.com/episodes/realtime-client-updates-from-background-jobs-with-stimulus It does use Sidekiq instead of DelayedJob, but because it is using ActiveJob, you can swap one out for another fairly easy. Does that work, or would you like to see an episode on setting up DelayedJob?

David Kimura PRO said over 6 years ago on Using Bootstrap Themes :
Typically, there will be an example application or demo included and you can see if there is an entry point file which includes the other ones. Also, there might be some files asset compiling with something like Babel. Which Bootstrap theme did you go with?

David Kimura PRO said over 6 years ago on Using Bootstrap Themes :
You can add this snippet to the `packs/application.js` or wherever appropriate. ``` $(document).ready(function () { $(".sidebar, #sidebarToggleTop").on('click', function (e) { $("body").toggleClass("sidebar-toggled"); $(".sidebar").toggleClass("toggled"); if ($(".sidebar").hasClass("toggled")) { $('.sidebar .collapse').collapse('hide'); }; }); }); ```

David Kimura PRO said over 6 years ago on From jQuery to ES6 :
I actually don't have any JS specific plugins. The only real plugins I have which adds functionality are Gitlens, Ruby, and Ruby Solargraph.

David Kimura PRO said over 6 years ago on Using Bootstrap Themes :
Have you been able to successfully run `yarn install`? The error message `node_modules doesn't exist or is not a directory` makes me think that the JS Libraries and dependencies haven't been installed yet.