You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems like the application js file is sourcing turbolinks, but the gem is missing from the Gemfile. (I didn't have the turbolinks gem installed before, since this is a new machine.) Adding gem "turbolinks" fixed it for me locally -- not sure if this is something needed in Suspenders.
The text was updated successfully, but these errors were encountered:
Right. suspenders didn't include turbolinks for long (#225). @derekprior I know lately you've been using turbolinks with success. Should we revisit our stance on suspenders?
Suspenders doesn't use turbolinks by default. It doesn't include it in
the Gemfile, but the generated `application.js` was trying to include
it, resulting in a failure.
This fix make sure a newly generated application doesn't include
the turbolinks reference.
[fixes#788]
Seems like the application js file is sourcing turbolinks, but the gem is missing from the Gemfile. (I didn't have the turbolinks gem installed before, since this is a new machine.) Adding
gem "turbolinks"
fixed it for me locally -- not sure if this is something needed in Suspenders.The text was updated successfully, but these errors were encountered: