Sha256: f9ffa233cc2238906aab28edb21a3588efba05e0380246e9aa1d71add4e8b837
Contents?: true
Size: 419 Bytes
Versions: 19
Compression:
Stored size: 419 Bytes
Contents
# Vagrant private network # # @see http://docs.vagrantup.com/v2/networking/private_network.html class ConfigBuilder::Model::Network::PrivateNetwork < ConfigBuilder::Model::Base # @!attribute [rw] :ip # @return [String] The IP address to use for the private network interface def_model_attribute :ip def to_proc Proc.new do |vm_config| vm_config.network(:private_network, @attrs) end end end
Version data entries
19 entries across 19 versions & 2 rubygems