Class: YARD::CLI::Config
Overview
CLI command to view or edit configuration options
Instance Attribute Summary collapse
-
#append ⇒ Boolean
Whether to append values to existing key.
-
#as_list ⇒ Boolean
Whether the value being set should be inside a list.
-
#key ⇒ Symbol?
The key to view/edit, if any.
-
#reset ⇒ Boolean
Whether to reset the #key.
-
#values ⇒ Array?
The list of values to set (or single value), if modifying.
Instance Method Summary collapse
- #description ⇒ Object
-
#initialize ⇒ Config
constructor
A new instance of Config.
- #run(*args) ⇒ Object
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
21 22 23 24 25 26 27 28 |
# File 'lib/yard/cli/config.rb', line 21 def initialize super self.key = nil self.values = [] self.reset = false self.append = false self.as_list = false end |
Instance Attribute Details
#append ⇒ Boolean
Returns whether to append values to existing key.
19 20 21 |
# File 'lib/yard/cli/config.rb', line 19 def append @append end |
#as_list ⇒ Boolean
Returns whether the value being set should be inside a list.
16 17 18 |
# File 'lib/yard/cli/config.rb', line 16 def as_list @as_list end |
#key ⇒ Symbol?
Returns the key to view/edit, if any.
7 8 9 |
# File 'lib/yard/cli/config.rb', line 7 def key @key end |
#reset ⇒ Boolean
Returns whether to reset the #key.
13 14 15 |
# File 'lib/yard/cli/config.rb', line 13 def reset @reset end |
#values ⇒ Array?
Returns the list of values to set (or single value), if modifying.
10 11 12 |
# File 'lib/yard/cli/config.rb', line 10 def values @values end |
Instance Method Details
#description ⇒ Object
30 31 32 |
# File 'lib/yard/cli/config.rb', line 30 def description 'Views or edits current global configuration' end |
#run(*args) ⇒ Object
34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/yard/cli/config.rb', line 34 def run(*args) optparse(*args) if key if reset || values.size > 0 modify_item else view_item end else list_configuration end end |