Sha256: c77c3ff358311ed3f8d52b480bf24aaeac3e8547283221095a67488566522980

Contents?: true

Size: 445 Bytes

Versions: 1

Compression:

Stored size: 445 Bytes

Contents

require "vagrant"

module VagrantPlugins
  module Omnibus
    # @author Seth Chisamore <schisamo@opscode.com>
    class Config < Vagrant.plugin("2", :config)

      # @return [String]
      #   The version of Chef to install.
      attr_accessor :chef_version

      def initialize
        @chef_version = UNSET_VALUE
      end

      def finalize!
        @chef_version = nil if @require_chef_version == UNSET_VALUE
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-omnibus-1.0.0 lib/vagrant-omnibus/config.rb