I'm trying to contribute to an open source project and I need a controller to handle a couple of forms that need to be submitted in.
I created these controllers inside a directory inside the gem called app/controllers/gemname/my_controller.rb
.
However, when I try to access the controller, it seems not to be loaded (I get a name error just as if I typed something like NonExistentController).
How do I load my controller with the gem?
Thanks!