Sha256: 22d907fd50fcc8931528fc9390dda31881e2264610a82c8f9f075c2fb9fe8138

Contents?: true

Size: 359 Bytes

Versions: 82

Compression:

Stored size: 359 Bytes

Contents

require "vagrant"

module VagrantPlugins
  module CommandResume
    class Plugin < Vagrant.plugin("2")
      name "resume command"
      description <<-DESC
      The `resume` command resumes a suspend virtual machine.
      DESC

      command("resume") do
        require File.expand_path("../command", __FILE__)
        Command
      end
    end
  end
end

Version data entries

82 entries across 75 versions & 13 rubygems

Version Path
vagrant-actionio-0.0.9 vendor/bundle/bundler/gems/vagrant-c74251a1d9c0/plugins/commands/resume/plugin.rb
vagrant-lxc-0.0.1 vendor/vagrant/plugins/commands/resume/plugin.rb