Class: Cmdserver::CustomSettings

Inherits:
Settings
  • Object
show all
Defined in:
lib/cmdserver.rb

Overview

}}}

Instance Attribute Summary

Attributes inherited from Settings

#module_dir, #workdir

Instance Method Summary collapse

Methods inherited from Settings

#load_modules

Constructor Details

#initialize(options) ⇒ CustomSettings

{{{



39
40
41
42
43
44
45
46
47
# File 'lib/cmdserver.rb', line 39

def initialize(options)
    @workdir = options[:workdir]
    if not @workdir.nil?
        super(work_dir=@workdir)
    else
        super()
    end
    @module_dir = options[:module_dir] if options[:module_dir]
end