class VersionManager::VCS::UnsupportedVCSError

Public Class Methods

new(vcs) click to toggle source
# File lib/version-manager/vcs.rb, line 15
def initialize(vcs)
  @vcs = vcs
end

Public Instance Methods

message() click to toggle source
# File lib/version-manager/vcs.rb, line 19
def message
  "VCS #{vcs} has not been supported yet"
end