vagrant/lib
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
..
vagrant [vagrant] Update Registry with #keys method. 2013-12-12 09:38:50 -05:00
vagrant.rb core: note Ruby and RubyGems version in logs 2013-12-03 23:44:08 -08:00