class Qs::ConfigFile::NoDaemonError

Public Class Methods

new(daemon, path) click to toggle source
Calls superclass method
# File lib/qs/config_file.rb, line 67
def initialize(daemon, path)
  prefix = "Configuration file #{path.to_s.inspect}"
  if daemon
    super "#{prefix} called `run` without a Qs::Daemon"
  else
    super "#{prefix} didn't call `run` with a Qs::Daemon"
  end
end