class Groonga::Command::ConfigGet

A command class that represents `config_get` command.

@since 1.1.5

Public Class Methods

command_name() click to toggle source
# File lib/groonga/command/config-get.rb, line 26
def command_name
  "config_get"
end
parameter_names() click to toggle source
# File lib/groonga/command/config-get.rb, line 30
def parameter_names
  [
    :key,
  ]
end

Public Instance Methods

key() click to toggle source

@return [String] `key` parameter value.

@since 1.1.4

# File lib/groonga/command/config-get.rb, line 42
def key
  self[:key]
end