gem install mygem
ERROR: Error installing mygem:
mygem requires mygem-adapter (>= 0, runtime)
I was wondering if there was an easy way to automatically install dependent gems when I want to install a gem? Something like gem install mygem -with_dependancies. Is something like this possible?
gemis not finding that dependency because it only pulls dependencies from installed gems and rubygems.org. You need to either:Add your own gem source as your gem is probably not on rubygems.org (the default)
Or