class NRSER::Types::Boolean::FalseType

A type for only `false`.

Provides a {#custom_from_s} to load from CLI options and ENV var-like string values.

Constants

STRINGS

Public Class Methods

new(**options) click to toggle source

Instantiate a new `True` type.

Calls superclass method NRSER::Types::Boolean::new
# File lib/nrser/types/booleans.rb, line 101
def initialize **options
  super false, **options
end