Reputation: 1016
I started a new rails 5.1.4
project but I have forgotten to add --skip-coffee
on rails new
.
Is there a way to remove the coffeescript
dependency without creating a new project?.
Upvotes: 37
Views: 6593
Reputation: 5270
gem 'coffee-rails'
from Gemfile
..js.coffee
to .js
.config.generators.javascript_engine = :js
to your application.rb.tmp
cache is cleared with rake tmp:cache:clear
Upvotes: 81