Having this in routes.rb
mount Ckeditor::Engine => '/ckeditor'
Since the ckeditor gem's controllers inherit from my ApplicationController, how can I find inside it that those are the controllers that are being loaded?
I need this because I found out that my ApplicationController is overriding the layout declaration and thus breaking the gem.
So far tried using request.original_url to check if "ckeditor" is present but it doesen't work out because when the engine is being loaded that part is 'ripped off'...
Run
rake routes. It tells you about the routes in mounted engines.