Module: Paramore::Boolean

Defined in:
lib/paramore/types.rb

Constant Summary collapse

TRUTHY_TEXT_VALUES =
%w[t true 1]

Class Method Summary collapse

Class Method Details

.[](input) ⇒ Object



20
21
22
# File 'lib/paramore/types.rb', line 20

def [](input)
  input.in?(TRUTHY_TEXT_VALUES)
end