I currently have the following in my Gemfile:
gem 'voteable_mongo'#, :github => 'kamilski81/voteable_mongo'
and I migrating my models into a .gemspec, but i'm not sure how this would look inside my gemspec. I currently have:
s.add_dependency "voteable_mongo"
But this ends up using the wrong dependenty (the original one I cloned) I would like to use my dependency. How could i point my gemspec dependency to my github repo?