ruby on rails - cannot load such file -- coffee_script -


i'm going remove active_admin angular rails app. ran following commands.

rails destroy active_admin:install rails destroy active_admin:resource product 

and met error.

cannot load such file -- coffee_script  <%= stylesheet_link_tag    'application', media: 'all', 'data-turbolinks-track': 'reload' %> <%= javascript_include_tag 'application' %> 

try

rake tmp:cache:clear 

or

try adding "gem 'coffee-rails', '~> 4.1.0'" gemfile , running bundle:install.


Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -