Hello everyone, I have a small question regarding RubyGems. In my GemSpec I add a number of dependencies: s.add_dependency 'postgres', '>= 0.7.1' s.add_dependency 'extensions', '>= 0.5' s.add_dependency 'sqlite3-ruby', '>= 1.0.0' ... Then I build the gem. When I try to install the gem from the local file, the dependencies are not resolved: gem install --local mygem.gem I get errors like 'postgres not found' instead of Gems asking about downloading the postgres gem. So I cannot test my Gem. Any idea? regards, George