Sha256: 81f5df5120dfd9f7fe4a68df00bb143ac910847c1f3d7985a461e69ed9847aea

Contents?: true

Size: 409 Bytes

Versions: 4

Compression:

Stored size: 409 Bytes

Contents

# lib/vagrant-ip-show/plugin.rb
module Vagrant

    module IpShow

        class Plugin < Vagrant.plugin('2')
          name "IpShow"

          description <<-DESC
          This plugin runs ifconfig/ipconfig in order to return 'ip'(s) of all of the vm's networks
          DESC

          command 'ip-show' do
            require_relative 'command'
            Command
          end

        end
    end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
vagrant-ip-show-0.0.4 lib/vagrant-ip-show/plugin.rb
vagrant-ip-show-0.0.3 lib/vagrant-ip-show/plugin.rb
vagrant-ip-show-0.0.2 lib/vagrant-ip-show/plugin.rb
vagrant-ip-show-0.0.1 lib/vagrant-ip-show/plugin.rb