lib/vagrant-scp-sync.rb in vagrant-scp-sync-0.5.8 vs lib/vagrant-scp-sync.rb in vagrant-scp-sync-0.5.9
- old
+ new
@@ -1,4 +1,14 @@
# frozen_string_literal: true
require 'vagrant-scp-sync/version'
require 'vagrant-scp-sync/plugin'
+require 'vagrant-scp-sync/errors'
+
+module VagrantPlugins
+ # This is used to SCP files to/from Guests and Hosts
+ module ScpSync
+ def self.source_root
+ @source_root ||= Pathname.new(File.expand_path('..', __dir__))
+ end
+ end
+end