Class: LogStash::Setting::ArrayCoercible

Inherits:
Coercible show all
Defined in:
lib/logstash/settings.rb

Instance Attribute Summary

Attributes inherited from LogStash::Setting

#default, #name

Instance Method Summary collapse

Methods inherited from Coercible

#set

Methods inherited from LogStash::Setting

#==, #reset, #set, #set?, #strict?, #to_hash, #validate_value, #value

Methods included from Util::Loggable

included, #logger, #slow_logger

Constructor Details

#initialize(name, klass, default, strict = true, &validator_proc) ⇒ ArrayCoercible

Returns a new instance of ArrayCoercible.



494
495
496
497
# File 'lib/logstash/settings.rb', line 494

def initialize(name, klass, default, strict=true, &validator_proc)
  @element_class = klass
  super(name, ::Array, default, strict, &validator_proc)
end

Instance Method Details

#coerce(value) ⇒ Object



499
500
501
# File 'lib/logstash/settings.rb', line 499

def coerce(value)
  Array(value)
end