I'm wondering how to make a gem accessible in a Rails 3 app without putting a reference to it in the gemfile. I want to do this with ruby-debug (I'm using ruby-debug19). I use this to debug, but not everybody on my team does and forcing the dependency just so I can use it doesn't seem very diplomatic. Is there another way?
If it ends up mattering, I'm using Rails3, Bundler 1.0.0, Ruby 1.9.2, RVM, OSX Snow Leopard
On a side note, I had thought about using the gemfile group feature, but this doesn't feel right either. Groups seem great for things like factory_girl where there is an actual dependency albeit only in specfic environments, but with ruby-debug there is no real need for it to be there unless you want to use it.