Method: Inifile#read
- Defined in:
- lib/vr/contrib/inifile.rb
#read(section, key, default = "") ⇒ Object
62 63 64 |
# File 'lib/vr/contrib/inifile.rb', line 62 def read( section, key, default="") if self[section] && r=self[section][key] then r else default end end |