I noticed that Capistrano gem has these dependencies: 1. net-ssh = 2.0.0 2. net-sftp = 2.0.0 3. net-scp = 1.0.0
However, the latest versions of these gems are 2.0.3, 2.0.1 and 1.0.1, respectively. That means they must contain bugfixes, but those versions aren't used with Capistrano. It's better to use the ">=" operator instead of just "=". You could also consider this: 1. net-ssh ~> 2.0.3 2. net-sftp ~> 2.0.1 3. net-scp ~> 1.0.1 Or was locking down to "x.0.0" versions intentional? --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
