Class: YARD::CLI::Config

Inherits:
Command show all
Defined in:
lib/yard/cli/config.rb

Overview

CLI command to view or edit configuration options

Since:

  • 0.6.2

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Command

#common_options, #load_script, #parse_options, run

Constructor Details

#initializeConfig

Returns a new instance of Config.

Since:

  • 0.6.2



15
16
17
18
19
20
# File 'lib/yard/cli/config.rb', line 15

def initialize
  super
  self.key = nil
  self.values = []
  self.reset = false
end

Instance Attribute Details

#keySymbol?

Returns the key to view/edit, if any.

Returns:

  • (Symbol, nil)

    the key to view/edit, if any

Since:

  • 0.6.2



7
8
9
# File 'lib/yard/cli/config.rb', line 7

def key
  @key
end

#resetBoolean

Returns whether to reset the #key.

Returns:

  • (Boolean)

    whether to reset the #key

Since:

  • 0.6.2



13
14
15
# File 'lib/yard/cli/config.rb', line 13

def reset
  @reset
end

#valuesArray?

Returns the list of values to set (or single value), if modifying.

Returns:

  • (Array, nil)

    the list of values to set (or single value), if modifying

Since:

  • 0.6.2



10
11
12
# File 'lib/yard/cli/config.rb', line 10

def values
  @values
end

Instance Method Details

#descriptionObject

Since:

  • 0.6.2



22
23
24
# File 'lib/yard/cli/config.rb', line 22

def description
  'Views or edits current global configuration'
end

#run(*args) ⇒ Object

Since:

  • 0.6.2



26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/yard/cli/config.rb', line 26

def run(*args)
  optparse(*args)
  if key
    if reset || values.size > 0
      modify_item
    else
      view_item
    end
  else
    list_configuration
  end
end