Can ActiveAdmin serve individual javascript files in development via Rails asset pipeline? -


i've configured activeadmin include own javascript, following these instructions active admin: including javascript. in initializers/active_admin.rb:

  config.register_javascript 'application.js.coffee' 

but 1 massive precompiled application.js served me (application.js.coffee requires many small files); in development mode when visit active admin pages. still want individual javascript files served individually easier debugging. there way this?

put in development.rb:

config.assets.debug = false 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -