Hacker News new | ask | show | jobs
by timdorr 3973 days ago
Your best bet is no integration at all. Just set up webpack to read from ./app/assets and output to ./public. Run it separately, preferable with a foreman Procfile for development (I've used Procfile.dev before).
2 comments

You'll still likely want digested assets that integrate with Rails asset helpers. This has been done with Gulp[1] if that helps at all.

[1]: http://viget.com/extend/gulp-rails-asset-pipeline

Thanks for the suggestion. I'd prefer some more automation, but that's also a possible solution.