views:

101

answers:

1

Hello,

i'm using a Rails engine, but i need to customize some controllers actions.

I actually forked the engine, and implementing those customizations into my own fork, but i was wondering if there is an official way in Rails Engines to override and customize controllers.

+2  A: 

Just define a controller with the same name in your own app\controllers folder, and it will be found first. That way you can easily customize it.

nathanvda
A lot easier than maintaing a custom fork!Thanks and sorry for the lame question!
sad sheep