vagrant/plugins/synced_folders/rsync/plugin.rb

19 lines
423 B
Ruby
Raw Normal View History

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
synced_folder("rsync", 5) do
require_relative "synced_folder"
SyncedFolder
end
end
end
end