Class: LogStash::Setting::Boolean
- Inherits:
-
Coercible
- Object
- LogStash::Setting
- Coercible
- LogStash::Setting::Boolean
- Defined in:
- lib/logstash/settings.rb
Overview
Specific settings #####
Instance Attribute Summary
Attributes inherited from LogStash::Setting
Instance Method Summary collapse
- #coerce(value) ⇒ Object
-
#initialize(name, default, strict = true, &validator_proc) ⇒ Boolean
constructor
A new instance of Boolean.
Methods inherited from Coercible
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 |