Exception: Puppet::ModuleTool::Errors::ModuleToolError

Inherits:
Error
  • Object
show all
Defined in:
lib/puppet/module_tool/errors/base.rb

Instance Attribute Summary

Attributes inherited from Error

#original

Instance Method Summary collapse

Methods inherited from Error

#initialize

Constructor Details

This class inherits a constructor from Puppet::Error

Instance Method Details

#v(version) ⇒ Object



3
4
5
# File 'lib/puppet/module_tool/errors/base.rb', line 3

def v(version)
  (version || '???').to_s.sub(/^(?=\d)/, 'v')
end

#vstringObject



7
8
9
10
11
12
13
# File 'lib/puppet/module_tool/errors/base.rb', line 7

def vstring
  if @action == :upgrade
    "#{v(@installed_version)} -> #{v(@requested_version)}"
  else
    "#{v(@installed_version || @requested_version)}"
  end
end