Sha256: 40ae523634870d17d5fb27ad3ff41a074f2a678305dbf3a387b1f36be775b3c5
Contents?: true
Size: 671 Bytes
Versions: 63
Compression:
Stored size: 671 Bytes
Contents
require "vagrant" module VagrantPlugins module SyncedFolderRSync # This plugin implements synced folders via rsync. class Plugin < Vagrant.plugin("2") name "RSync synced folders" description <<-EOF The Rsync synced folder plugin will sync folders via rsync. EOF command("rsync", primary: false) do require_relative "command/rsync" Command::Rsync end command("rsync-auto", primary: false) do require_relative "command/rsync_auto" Command::RsyncAuto end synced_folder("rsync", 5) do require_relative "synced_folder" SyncedFolder end end end end
Version data entries
63 entries across 56 versions & 8 rubygems