I’m using rails 3 with bundler, I installed a gem using bundler, now I need to modify the flow of the gem slightly by modifying the controller of the gem, how am I supposed to do so, i’m sure there is a command to install the files locally so I can modify it, I tried to override the controller by creating another controller with the same name but sounds not working .
Share
You should just be able to make a controller, inherit from the gem controller and override the method behavior as you see fit
And then you may have to tell your routes to go to your controller