Class: HammerCLI::Options::Normalizers::Enum
- Inherits:
-
AbstractNormalizer
- Object
- AbstractNormalizer
- HammerCLI::Options::Normalizers::Enum
- Defined in:
- lib/hammer_cli/options/normalizers.rb
Instance Attribute Summary collapse
-
#allowed_values ⇒ Object
readonly
Returns the value of attribute allowed_values.
Instance Method Summary collapse
- #complete(value) ⇒ Object
- #description ⇒ Object
- #format(value) ⇒ Object
-
#initialize(allowed_values) ⇒ Enum
constructor
A new instance of Enum.
Constructor Details
#initialize(allowed_values) ⇒ Enum
Returns a new instance of Enum.
183 184 185 |
# File 'lib/hammer_cli/options/normalizers.rb', line 183 def initialize(allowed_values) @allowed_values = allowed_values end |
Instance Attribute Details
#allowed_values ⇒ Object (readonly)
Returns the value of attribute allowed_values.
181 182 183 |
# File 'lib/hammer_cli/options/normalizers.rb', line 181 def allowed_values @allowed_values end |
Instance Method Details
#complete(value) ⇒ Object
204 205 206 |
# File 'lib/hammer_cli/options/normalizers.rb', line 204 def complete(value) Completer::finalize_completions(@allowed_values) end |
#description ⇒ Object
187 188 189 |
# File 'lib/hammer_cli/options/normalizers.rb', line 187 def description _("Possible value(s): %s") % quoted_values end |
#format(value) ⇒ Object
191 192 193 194 195 196 197 198 199 200 201 202 |
# File 'lib/hammer_cli/options/normalizers.rb', line 191 def format(value) if @allowed_values.include? value value else if allowed_values.count == 1 msg = _("value must be %s") % quoted_values else msg = _("value must be one of %s") % quoted_values end raise ArgumentError, msg end end |