Sha256: a705f9d3140e24d15d2a3d554d739510af7122ecf293b2487280e1a57dfe5a91

Contents?: true

Size: 1.22 KB

Versions: 1

Compression:

Stored size: 1.22 KB

Contents

module VirtualBox
  VERSION = "0.7.6.dev"

  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
bbrowning-virtualbox-0.7.6.dev lib/virtualbox/version.rb