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



191
192
193
# File 'lib/hammer_cli/options/normalizers.rb', line 191

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

#descriptionObject



176
177
178
# File 'lib/hammer_cli/options/normalizers.rb', line 176

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

#format(bool) ⇒ Object



180
181
182
183
184
185
186
187
188
189
# File 'lib/hammer_cli/options/normalizers.rb', line 180

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