[Rails-core] rails engine view helpers load order

2011-06-18 Thread Jonathan Rochkind
This one is driving me crazy, appreciate it VERY much if someone can even give me some hints at where to look in Rails source code to understand/debug what's going on, I'm getting lost trying to look through it. Rails 3.0.8. I have an engine(gem). It provides a controller at

Re: [Rails-core] rails engine view helpers load order

2011-06-18 Thread Ryan Bigg
I would have this helper module inside a namespace within the engine, which will allow people to have a similarly named one in the application. In the application's helper, then I would just include the engine's one, the process of which would make those methods available in the application