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.
 - 
  
    
      #gem_install_cmd  ⇒ String? 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Command to use when configuring ~/.gemrc file.
 - 
  
    
      #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.
      26 27 28 29 30 31 32 33 34  | 
    
      # File 'lib/yard/cli/config.rb', line 26 def initialize super self.key = nil self.values = [] self.reset = false self.append = false self.as_list = false self.gem_install_cmd = nil end  | 
  
Instance Attribute Details
#append ⇒ Boolean
Returns whether to append values to existing key.
      20 21 22  | 
    
      # File 'lib/yard/cli/config.rb', line 20 def append @append end  | 
  
#as_list ⇒ Boolean
Returns whether the value being set should be inside a list.
      17 18 19  | 
    
      # File 'lib/yard/cli/config.rb', line 17 def as_list @as_list end  | 
  
#gem_install_cmd ⇒ String?
Returns command to use when configuring ~/.gemrc file. If the string is nil, configuration should not occur.
      24 25 26  | 
    
      # File 'lib/yard/cli/config.rb', line 24 def gem_install_cmd @gem_install_cmd end  | 
  
#key ⇒ Symbol?
Returns the key to view/edit, if any.
      8 9 10  | 
    
      # File 'lib/yard/cli/config.rb', line 8 def key @key end  | 
  
#reset ⇒ Boolean
Returns whether to reset the #key.
      14 15 16  | 
    
      # File 'lib/yard/cli/config.rb', line 14 def reset @reset end  | 
  
#values ⇒ Array?
Returns the list of values to set (or single value), if modifying.
      11 12 13  | 
    
      # File 'lib/yard/cli/config.rb', line 11 def values @values end  | 
  
Instance Method Details
#description ⇒ Object
      36 37 38  | 
    
      # File 'lib/yard/cli/config.rb', line 36 def description 'Views or edits current global configuration' end  | 
  
#run(*args) ⇒ Object
      40 41 42 43 44 45 46 47 48 49 50 51 52 53  | 
    
      # File 'lib/yard/cli/config.rb', line 40 def run(*args) optparse(*args) if gem_install_cmd configure_gemrc elsif key if reset || !values.empty? modify_item else view_item end else list_configuration end end  |