Class: LogStash::Setting::Boolean

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

Overview

Specific settings #####

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

Constructor Details

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

Returns a new instance of Boolean.



320
321
322
# File 'lib/logstash/settings.rb', line 320

def initialize(name, default, strict=true, &validator_proc)
  super(name, Object, default, strict, &validator_proc)
end

Instance Method Details

#coerce(value) ⇒ Object



324
325
326
327
328
329
330
331
332
333
# File 'lib/logstash/settings.rb', line 324

def coerce(value)
  case value
  when TrueClass, "true"
    true
  when FalseClass, "false"
    false
  else
    raise ArgumentError.new("could not coerce #{value} into a boolean")
  end
end