Method: Rconftool::Setting#initialize

Defined in:
lib/rconftool.rb

#initialize(name, version) ⇒ Setting

Returns a new instance of Setting.



169
170
171
172
173
174
175
# File 'lib/rconftool.rb', line 169

def initialize(name, version)
  @name = name.gsub(/\s+/,'')
  @version = version.gsub(/s+/,'')
  @comment = ""
  @content = ""
  @in_content = false
end