Sha256: 8cfc1e600b3b344832ecf427910c39cd1f1f0cc7953fbd24385ad71da333c07a

Contents?: true

Size: 408 Bytes

Versions: 1

Compression:

Stored size: 408 Bytes

Contents

require "vagrant"

module VagrantPlugins
  module CommandInit
    class Plugin < Vagrant.plugin("2")
      name "init command"
      description <<-DESC
      The `init` command sets up your working directory to be a
      Vagrant-managed environment.
      DESC

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-cloudstack-1.2.0 vendor/bundle/bundler/gems/vagrant-c84e05fd063f/plugins/commands/init/plugin.rb