Class: HammerCLI::Options::OptionDefinition
- Inherits:
-
Clamp::Option::Definition
- Object
- Clamp::Option::Definition
- HammerCLI::Options::OptionDefinition
- Defined in:
- lib/hammer_cli/options/option_definition.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#context_target ⇒ Object
Returns the value of attribute context_target.
-
#deprecated_switches ⇒ Object
Returns the value of attribute deprecated_switches.
-
#value_formatter ⇒ Object
Returns the value of attribute value_formatter.
Instance Method Summary collapse
- #complete(value) ⇒ Object
- #default_conversion_block ⇒ Object
- #default_value ⇒ Object
- #deprecation_message(switch) ⇒ Object
- #description ⇒ Object
- #format_description ⇒ Object
- #format_value(value) ⇒ Object
- #handles?(switch) ⇒ Boolean
- #help_lhs ⇒ Object
- #help_rhs ⇒ Object
-
#initialize(switches, type, description, options = {}) ⇒ OptionDefinition
constructor
A new instance of OptionDefinition.
- #nil_subst ⇒ Object
- #value_description ⇒ Object
Constructor Details
#initialize(switches, type, description, options = {}) ⇒ OptionDefinition
Returns a new instance of OptionDefinition.
29 30 31 32 33 34 |
# File 'lib/hammer_cli/options/option_definition.rb', line 29 def initialize(switches, type, description, = {}) self.value_formatter = [:format] || HammerCLI::Options::Normalizers::Default.new self.context_target = [:context_target] self.deprecated_switches = [:deprecated] super end |
Instance Attribute Details
#context_target ⇒ Object
Returns the value of attribute context_target.
26 27 28 |
# File 'lib/hammer_cli/options/option_definition.rb', line 26 def context_target @context_target end |
#deprecated_switches ⇒ Object
Returns the value of attribute deprecated_switches.
27 28 29 |
# File 'lib/hammer_cli/options/option_definition.rb', line 27 def deprecated_switches @deprecated_switches end |
#value_formatter ⇒ Object
Returns the value of attribute value_formatter.
25 26 27 |
# File 'lib/hammer_cli/options/option_definition.rb', line 25 def value_formatter @value_formatter end |
Instance Method Details
#complete(value) ⇒ Object
36 37 38 |
# File 'lib/hammer_cli/options/option_definition.rb', line 36 def complete(value) value_formatter.complete(value) end |
#default_conversion_block ⇒ Object
111 112 113 114 115 116 117 |
# File 'lib/hammer_cli/options/option_definition.rb', line 111 def default_conversion_block if flag? Clamp.method(:truthy?) else self.method(:format_value) end end |
#default_value ⇒ Object
133 134 135 136 137 138 139 |
# File 'lib/hammer_cli/options/option_definition.rb', line 133 def default_value if defined?(@default_value) value_formatter.format(@default_value) elsif multivalued? [] end end |
#deprecation_message(switch) ⇒ Object
65 66 67 68 69 70 71 |
# File 'lib/hammer_cli/options/option_definition.rb', line 65 def (switch) if deprecated_switches.class <= String && switches.include?(switch) deprecated_switches elsif deprecated_switches.class <= Hash && deprecated_switches.keys.include?(switch) deprecated_switches[switch] end end |
#description ⇒ Object
73 74 75 76 77 78 79 80 81 82 83 84 |
# File 'lib/hammer_cli/options/option_definition.rb', line 73 def description if deprecated_switches.class <= String format_deprecation_msg(super, _('Deprecated: %{deprecated_msg}') % { deprecated_msg: deprecated_switches }) elsif deprecated_switches.class <= Hash full_msg = deprecated_switches.map do |flag, msg| _('%{flag} is deprecated: %{deprecated_msg}') % { flag: flag, deprecated_msg: msg } end.join(', ') format_deprecation_msg(super, full_msg) else super end end |
#format_description ⇒ Object
86 87 88 |
# File 'lib/hammer_cli/options/option_definition.rb', line 86 def format_description value_formatter.description end |
#format_value(value) ⇒ Object
119 120 121 122 123 124 125 |
# File 'lib/hammer_cli/options/option_definition.rb', line 119 def format_value(value) if value == nil_subst HammerCLI::NilValue else value_formatter.format(value) end end |
#handles?(switch) ⇒ Boolean
55 56 57 58 59 60 61 62 63 |
# File 'lib/hammer_cli/options/option_definition.rb', line 55 def handles?(switch) = _("Warning: Option %{option} is deprecated. %{message}") if deprecated_switches.class <= String && switches.include?(switch) warn( % { :option => switch, :message => deprecated_switches }) elsif deprecated_switches.class <= Hash && deprecated_switches.keys.include?(switch) warn( % { :option => switch, :message => deprecated_switches[switch] }) end super(switch) end |
#help_lhs ⇒ Object
40 41 42 |
# File 'lib/hammer_cli/options/option_definition.rb', line 40 def help_lhs super end |
#help_rhs ⇒ Object
44 45 46 47 48 49 50 51 52 53 |
# File 'lib/hammer_cli/options/option_definition.rb', line 44 def help_rhs lines = [ description.strip, format_description.strip, value_description.strip ] rhs = lines.reject(&:empty?).join("\n") rhs.empty? ? " " : rhs end |
#nil_subst ⇒ Object
127 128 129 130 131 |
# File 'lib/hammer_cli/options/option_definition.rb', line 127 def nil_subst nil_subst = ENV['HAMMER_NIL'] || HammerCLI::Options::NIL_SUBST raise _('Environment variable HAMMER_NIL can not be empty.') if nil_subst.empty? nil_subst end |
#value_description ⇒ Object
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'lib/hammer_cli/options/option_definition.rb', line 90 def value_description default_sources = [ ("$#{@environment_variable}" if defined?(@environment_variable)), (@default_value.inspect if defined?(@default_value)) ].compact str = "" if multivalued? str += _("Can be specified multiple times.") str += " " end unless default_sources.empty? sep = _(", or") sep += " " str += _("Default:") str += " " str += default_sources.join(sep) end str end |