Sha256: 302f719a3bb1a947bddded88d3f2ce2ba57d34b92b1fbe08704163432d9ad75e
Contents?: true
Size: 1.48 KB
Versions: 12
Compression:
Stored size: 1.48 KB
Contents
module Vagrant module Plugin module V2 # This is the container class for the components of a single plugin. # This allows us to separate the plugin class which defines the # components, and the actual container of those components. This # removes a bit of state overhead from the plugin class itself. class Components # This contains all the action hooks. # # @return [Hash<Symbol, Array>] attr_reader :action_hooks # This contains all the configuration plugins by scope. # # @return [Hash<Symbol, Registry>] attr_reader :configs # This contains all the guests and their parents. # # @return [Registry<Symbol, Array<Class, Symbol>>] attr_reader :guests # This contains all the registered guest capabilities. # # @return [Hash<Symbol, Registry>] attr_reader :guest_capabilities # This contains all the provider plugins by name, and returns # the provider class and options. # # @return [Hash<Symbol, Registry>] attr_reader :providers def initialize # The action hooks hash defaults to [] @action_hooks = Hash.new { |h, k| h[k] = [] } @configs = Hash.new { |h, k| h[k] = Registry.new } @guests = Registry.new @guest_capabilities = Hash.new { |h, k| h[k] = Registry.new } @providers = Registry.new end end end end end
Version data entries
12 entries across 12 versions & 3 rubygems