Class: Kali::Parameter::Default

Inherits:
Kali::Parameter show all
Defined in:
lib/kali/parameters.rb

Overview

Public: Meta-property that represents any user-defined property not currently implemented in the system.

Instance Attribute Summary

Attributes inherited from KeyValuePair

#value

Instance Method Summary collapse

Methods inherited from Kali::Parameter

#separator, #to_ics

Methods inherited from KeyValuePair

default, #name, #separator, #to_ics, #to_s, type, wrap

Methods included from Utils::Named

#method_name, #name

Constructor Details

#initialize(name, value) ⇒ Default

Returns a new instance of Default.



7
8
9
10
# File 'lib/kali/parameters.rb', line 7

def initialize(name, value)
  @name = name
  super(value)
end