Sha256: 5ea1bb631fe9fcc8854a94e29e6ad71c876f5aed497e8e95a35ecf85843d58c2
Contents?: true
Size: 544 Bytes
Versions: 58
Compression:
Stored size: 544 Bytes
Contents
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_relative "command" self.init! Command end protected def self.init! return if defined?(@_init) I18n.load_path << File.expand_path("../locales/en.yml", __FILE__) I18n.reload! @_init = true end end end end
Version data entries
58 entries across 54 versions & 6 rubygems