Class: Optimist::FloatOption
- Defined in:
- lib/rbcli/components/parser/optimist/optimist.rb
Overview
Floating point number option class.
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from Option
#default, #long, #multi_given, #name, #permitted, #short
Instance Method Summary collapse
Methods inherited from Option
#array_default?, #callback, create, #desc, #educate, #flag?, #full_description, get_klass_from_default, get_type_from_disdef, handle_long_opt, handle_short_opt, #initialize, #multi, #multi_arg?, #opts, #opts=, register_alias, #required?, #short?, #single_arg?
Constructor Details
This class inherits a constructor from Optimist::Option
Instance Method Details
#parse(paramlist, _neg_given) ⇒ Object
857 858 859 860 861 862 863 864 |
# File 'lib/rbcli/components/parser/optimist/optimist.rb', line 857 def parse(paramlist, _neg_given) paramlist.map do |pg| pg.map do |param| raise CommandlineError, "option '#{self.name}' needs a floating-point number" unless param.is_a?(Numeric) || param =~ FLOAT_RE param.to_f end end end |
#type_format ⇒ Object
853 854 855 |
# File 'lib/rbcli/components/parser/optimist/optimist.rb', line 853 def type_format "=<f>"; end |