Method: Inifile#flash
- Defined in:
- lib/vr/contrib/inifile.rb
#flash ⇒ Object
71 72 73 74 75 76 77 78 79 80 |
# File 'lib/vr/contrib/inifile.rb', line 71 def flash f=open @fn,"w" self.each do |k,v| f.write'['+k+']' +"\n" v.each do |k1,v1| f.write k1+"="+v1.to_s+"\n" end end f.close end |