class Roma::Mkconfig::Config_status

Attributes

default_value[RW]
name[RW]
print[RW]
value[RW]

Public Class Methods

new(hash, input, store_type = nil) click to toggle source
    # File lib/roma/tools/mkconfig.rb
228 def initialize(hash, input, store_type = nil)
229   @name = hash["name"]
230   @value = input
231   if store_type == "Array"
232     @value = Array.new
233     @value << input
234   end
235   @print = true
236 end