Sha256: 82cea308941376e8ec1ec210e66db0038cf064f4de72999264ab1193a4eff16b

Contents?: true

Size: 331 Bytes

Versions: 5

Compression:

Stored size: 331 Bytes

Contents

module Vagrant
  module Templated
    class Plugin < Vagrant.plugin('2')
      name 'vagrant templated'
      description 'The `templated` command gives you a way to init a project with a templated Vagrantfile'

      command 'templated' do
        require_relative 'command/root'
        Command::Root
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
vagrant-templated-0.2.0 lib/vagrant-templated/plugin.rb
vagrant-templated-0.1.5 lib/vagrant-templated/plugin.rb
vagrant-templated-0.1.4 lib/vagrant-templated/plugin.rb
vagrant-templated-0.1.3 lib/vagrant-templated/plugin.rb
vagrant-templated-0.1.2 lib/vagrant-templated/plugin.rb