Class: HammerCLI::Options::Normalizers::Bool

Inherits:
AbstractNormalizer show all
Defined in:
lib/hammer_cli/options/normalizers.rb

Instance Method Summary collapse

Instance Method Details

#complete(value) ⇒ Object



132
133
134
# File 'lib/hammer_cli/options/normalizers.rb', line 132

def complete(value)
  ["yes ", "no "]
end

#descriptionObject



117
118
119
# File 'lib/hammer_cli/options/normalizers.rb', line 117

def description
  _('One of %s.') % ['true/false', 'yes/no', '1/0'].join(', ')
end

#format(bool) ⇒ Object



121
122
123
124
125
126
127
128
129
130
# File 'lib/hammer_cli/options/normalizers.rb', line 121

def format(bool)
  bool = bool.to_s
  if bool.downcase.match(/^(true|t|yes|y|1)$/i)
    return true
  elsif bool.downcase.match(/^(false|f|no|n|0)$/i)
    return false
  else
    raise ArgumentError, _('Value must be one of %s.') % ['true/false', 'yes/no', '1/0'].join(', ')
  end
end