Sha256: 1ec8be22d6e6154833c946644a2b75a5e71819a695520d0497735c232c555e69
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
module VirtualBox module Version # Returns a boolean denoting whether the current VirtualBox # version is supported or not. This will return `false` if the # version is invalid, the version is not detected, etc. That means # that even if VirtualBox is not installed, this will simply # return `false`. # # @return [Boolean] def supported? !version.nil? end # Returns the version string of the VirtualBox installed, ex. "3.1.6" # This string is cached since the version typically doesn't change # during runtime. If you must refresh the version, send the boolean # `true` as the first parameter. def version(refresh=false) @_version = Lib.lib.virtualbox.version if @_version.nil? || refresh @_version rescue Exception nil end # Returns the revision string of the VirtualBox installed, ex. "51742" # This string is cached since the revision doesn't typically change during # runtime. If you must refresh the version, send the boolean `true` as the # first parameter. def revision(refresh=false) @_revision = Lib.lib.virtualbox.revision.to_s if @_revision.nil? || refresh @_revision end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
virtualbox-0.7.5 | lib/virtualbox/version.rb |