Grr. Apparently "gem build" doesn't like "foo >= 2.0.0", and requires "foo >=2.0.0" (no space between operator and version). Somehow it didn't warn or anything, though, it just silently built that as "foo >= 0" and "foo = 2.0.0" (?!).
I'll fix and push 2.4.3. This is getting silly. :( - Jamis On Jun 28, 2008, at 7:08 AM, Mislav Marohnić wrote: > I noticed that Capistrano gem has these dependencies: > • net-ssh = 2.0.0 > • net-sftp = 2.0.0 > • 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: > • net-ssh ~> 2.0.3 > • net-sftp ~> 2.0.1 > • 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 -~----------~----~----~----~------~----~------~--~---
