vagrant/plugins/commands/port/plugin.rb

18 lines
346 B
Ruby
Raw Normal View History

2015-11-24 16:08:30 +00:00
require "vagrant"
module VagrantPlugins
module CommandPort
class Plugin < Vagrant.plugin("2")
name "port command"
description <<-DESC
The `port` command displays guest port mappings.
DESC
command("port") do
require File.expand_path("../command", __FILE__)
Command
end
end
end
end