lib/vagrant-skytap/plugin.rb in vagrant-skytap-0.1.8 vs lib/vagrant-skytap/plugin.rb in vagrant-skytap-0.1.9
- old
+ new
@@ -34,10 +34,20 @@
Provider
end
command("up", primary: true) do
require_relative "command/up"
- Command::Up
+ Skytap::Command::Up
+ end
+
+ command("publish-url", primary: true) do
+ require_relative "command/publish_url/root"
+ Skytap::Command::PublishUrl::Root
+ end
+
+ provider_capability(:skytap, :public_address) do
+ require_relative "cap/public_address"
+ Cap::PublicAddress
end
# This initializes the internationalization strings.
def self.setup_i18n
I18n.load_path << File.expand_path("locales/en.yml", Skytap.source_root)