Sha256: 523072f55a3f361489d3d2232d285a09315b87911708264a67e858c4bc422f3d
Contents?: true
Size: 785 Bytes
Versions: 27
Compression:
Stored size: 785 Bytes
Contents
require "vagrant" module VagrantPlugins module SyncedFolderSMB autoload :Errors, File.expand_path("../errors", __FILE__) # This plugin implements SMB synced folders. class Plugin < Vagrant.plugin("2") name "SMB synced folders" description <<-EOF The SMB synced folders plugin enables you to use SMB folders on Windows and share them to guest machines. EOF synced_folder("smb", 7) do require_relative "synced_folder" init! SyncedFolder end protected def self.init! return if defined?(@_init) I18n.load_path << File.expand_path( "templates/locales/synced_folder_smb.yml", Vagrant.source_root) I18n.reload! @_init = true end end end end
Version data entries
27 entries across 24 versions & 5 rubygems