Sha256: 005d7b613986e8f5f6e83b60053edf378fb3e37679cb83f29e2cae76e0d0d8ba

Contents?: true

Size: 395 Bytes

Versions: 6

Compression:

Stored size: 395 Bytes

Contents

module Vagrant
  module SshFS
    class Plugin < Vagrant.plugin("2")
      name "vagrant-sshfs"
      description "A Vagrant plugin that mounts sshfs in the host machine."

      config "sshfs" do
        require "vagrant-sshfs/config"
        Config
      end

      action_hook(:sshfs, :machine_action_up) do |hook|
        hook.append(Vagrant::SshFS::Actions::Up)
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
vagrant-sshfs-0.0.5.beta1 lib/vagrant-sshfs/plugin.rb
vagrant-sshfs-0.0.4 lib/vagrant-sshfs/plugin.rb
vagrant-sshfs-0.0.3 lib/vagrant-sshfs/plugin.rb
vagrant-sshfs-0.0.3.beta1 lib/vagrant-sshfs/plugin.rb
vagrant-sshfs-0.0.2.beta1 lib/vagrant-sshfs/plugin.rb
vagrant-sshfs-0.0.1 lib/vagrant-sshfs/plugin.rb