Method: Web_Config#to_s

Defined in:
lib/oynx/config.rb

#to_sObject

Our Web_Config as a String



18
19
20
21
22
23
24
# File 'lib/oynx/config.rb', line 18

def to_s()
  ret = ""
  self.each_pair do |key, val|
    ret += "#{key}: #{val}\n"
  end
  return ret
end