class Groonga::Command::RubyEval

A command class that represents `ruby_eval` command.

@since 1.0.6

Public Class Methods

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

Public Instance Methods

script() click to toggle source

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

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