Sha256: d8d261a98bc92fb448ac66b5fc1244bba80c705fbb70a437c30ff87345746a8f

Contents?: true

Size: 623 Bytes

Versions: 1

Compression:

Stored size: 623 Bytes

Contents

require "vagrant-rsync-blitz/plugin"
require "pathname"

module VagrantPlugins
  module RsyncBlitz
    lib_path = Pathname.new(File.expand_path("../vagrant-rsync-blitz", __FILE__))
    autoload :Errors, lib_path.join("errors")
    autoload :ListenOSX, lib_path.join("listen/listenosx")
    autoload :ListenLinux, lib_path.join("listen/listenlinux")
    autoload :ListenWindows, lib_path.join("listen/listenwindows")

    # This returns the path to the source of this plugin.
    #
    # @return [Pathname]
    def self.source_root
      @source_root ||= Pathname.new(File.expand_path("../../", __FILE__))
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-rsync-blitz-2.0.0 lib/vagrant-rsync-blitz.rb