So here's my problem:
I have a project and I am trying to install Gems locally to that project. For example if I install devise from the Gemfile and then run a bundle install it won't put any of the controllers in the controllers directory of the project. Instead I have to hunt through the RVM directories to get that particular gem's controllers, copy them to my project and then start writing my project from there.
Any suggestions?
rails generate devise:views. Gems are there to isolate library code from your own. Is there a reason you need to access Devise's controller? As a rule of thumb you shouldn't be changing Devise's code directly. – Shane O'Connor Sep 29 '12 at 23:11