class Groonga::Command::RubyLoad

A command class that represents `ruby_load` command.

@since 1.0.6

Public Class Methods

command_name() click to toggle source
# File lib/groonga/command/ruby-load.rb, line 27
def command_name
  "ruby_load"
end
parameter_names() click to toggle source
# File lib/groonga/command/ruby-load.rb, line 31
def parameter_names
  [
    :path,
  ]
end

Public Instance Methods

path() click to toggle source

@return [String] `path` parameter value. @since 1.0.6

# File lib/groonga/command/ruby-load.rb, line 42
def path
  self[:path]
end