mitchellh / virtualbox

[ABANDONED] Create and modify virtual machines in VirtualBox using pure ruby.
http://mitchellh.github.com/virtualbox/
MIT License
245 stars 45 forks source link

Make attributes on the SystemProperties class (not instance) #18

Closed KieranP closed 14 years ago

KieranP commented 14 years ago

Current:

Global.global.system_properties.max_boot_position

Desired:

SystemProperties.max_boot_position
mitchellh commented 14 years ago

Just use the Global.global... way:

sp = Global.global.system_properties
sp.max_boot_position

Closing.