RiotGames/vagrant-berkshelf

View on GitHub
lib/vagrant-berkshelf/env.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'vagrant/ui'

module VagrantPlugins
  module Berkshelf
    class Env
      # @return [String]
      attr_accessor :shelf

      def initialize
        @shelf = nil
      end
    end
  end
end