method
load_config
v1.2.6 -
Show latest stable
- Class:
ToplevelInstaller
load_config(task)public
No documentation available.
# File actionwebservice/setup.rb, line 737
def load_config(task)
case task
when 'config'
ConfigTable.new
when 'clean', 'distclean'
if File.exist?(ConfigTable.savefile)
then ConfigTable.load
else ConfigTable.new
end
else
ConfigTable.load
end
end