I am new to developing Ruby gems, but I thought I'd give it a try.
Recently checking out the latest episode on Railscasts (http://railscasts.com/episodes/245-new-gem-with-bundler) I'm using Bundler to create my gem.
However I'm kind of clueless on how to test my gem.
Sure I could run rake install and then require it from irb, but this seems like a kind of slow workflow for me.
What I'd like to do is create a dummy Rails app and require the gem by referencing to it's source code. Is this possible? I'm sure I've read about it somewhere…
Thanks!