class GeminaboxRelease::InvalidConfig

Public Class Methods

new(msg = "") click to toggle source
Calls superclass method
# File lib/geminabox-release.rb, line 28
def initialize(msg = "")
  if msg.empty?
    msg = "Please set your host in your geminabox config (in ~/.gem/geminabox).\n"
    msg += "The config file should be YAML with an host entry, e.g.\n \":host: http://your.host.tld:optional-port\""
  end
  super(msg)
end