John Bellone 4194da19c6 [vagrant] Update Registry with #keys method.
This helper method to return the keys for the registry will give capability to eliminate some code. Example:

```ruby
keys = [] 
@subcommands.each { |k,v| keys << k }
keys.sort.each { |k| o.seperator "#{k}" }
```

Versus:

```ruby
@subcommands.keys.sort.each { |k| o.seperator "#{k}" }
```
2013-12-12 09:38:50 -05:00
..
2013-12-07 20:59:54 -08:00
2013-11-27 18:56:48 -06:00
2013-12-10 21:23:11 +01:00
2013-04-16 15:22:14 -07:00
2013-04-10 10:49:10 -07:00
2013-12-04 18:25:29 -03:00
2013-12-08 11:14:18 -08:00
2013-12-08 11:14:18 -08:00
2013-05-12 16:32:15 +03:00
2013-12-08 22:51:58 -08:00