module HashiCorp::VagrantVMwareDesktop::Action::Common

Public Instance Methods

to_s() click to toggle source

We don’t want to expose the entire path to the middleware class, so we just give ourselves the class name.

@return [String]

# File lib/vagrant-vmware-desktop/action/common.rb, line 9
def to_s
  class_name = self.class.to_s.split("::").last
  "VMware Middleware: #{class_name}"
end