Sha256: a3917977cd384d63aa3098b32e9f84f8390673fe5bf546613409e93a7e532272

Contents?: true

Size: 400 Bytes

Versions: 2

Compression:

Stored size: 400 Bytes

Contents

require 'vagrant'

module VagrantPlugins
  module RsyncPick
    class Plugin < ::Vagrant.plugin("2")
      name "rsync-pick"
      description "Picks atomic changes from the guest machine folder via rsync"

      config "rsync_pick" do
        require_relative "config"
        Config
      end

      command "rpick" do
        require_relative "command"
        Command
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-rsync-pick-0.2.1 lib/vagrant-rsync-pick/plugin.rb
vagrant-rsync-pick-0.2.0 lib/vagrant-rsync-pick/plugin.rb