Method: IniFile#taint

Defined in:
lib/inifile.rb

#taintObject

Public: Mark this IniFile as tainted – this will traverse each section marking each as tainted.

Returns this IniFile.



347
348
349
350
351
352
# File 'lib/inifile.rb', line 347

def taint
  super
  @ini.each_value {|h| h.taint}
  @ini.taint
  self
end