class DFileConfig

Public Class Methods

method_missing(m, *args) click to toggle source
# File Entities/DFiles.rb, line 314
def self.method_missing(m, *args)
  dputs(4) { "#{m} - #{args.inspect} - #{DFileConfigs.singleton.inspect}" }
  if args.length > 0
    DFileConfigs.singleton.send(m, *args)
  else
    DFileConfigs.singleton.send(m)
  end
end
respond_to?(cmd) click to toggle source
# File Entities/DFiles.rb, line 323
def self.respond_to?(cmd)
  DFileConfigs.singleton.respond_to?(cmd)
end