Sha256: bcd4a067ae71ba9a3dc28b36b7a8a7ef6d183d79b975919d87fff3c76c2f2d2c

Contents?: true

Size: 581 Bytes

Versions: 2

Compression:

Stored size: 581 Bytes

Contents

module Berkshelf
  module Vagrant
    # @author Jamie Winsor <reset@riotgames.com>
    #
    # Environment data to build up and persist through the middleware chain
    class Env
      # @return [Vagrant::UI::Colored]
      attr_accessor :ui
      # @return [Berkshelf::Berksfile]
      attr_accessor :berksfile
      # @return [String]
      attr_accessor :shelf
      # @return [Berkshelf::Config]
      attr_accessor :config

      def initialize
        @ui     = ::Vagrant::UI::Colored.new('Berkshelf')
        @config = Berkshelf::Config.instance
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
berkshelf-vagrant-1.1.0 lib/berkshelf/vagrant/env.rb
berkshelf-vagrant-1.0.6 lib/berkshelf/vagrant/env.rb