Skip to content
Kward Search API index

Class: Kward::ConfigFiles::PromptTemplate

Inherits:
Struct
  • Object
show all
Defined in:
lib/kward/config/core.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#argument_hintObject

Returns the value of attribute argument_hint

Returns:

  • (Object)

    the current value of argument_hint



33
34
35
# File 'lib/kward/config/core.rb', line 33

def argument_hint
  @argument_hint
end

#bodyObject

Returns the value of attribute body

Returns:

  • (Object)

    the current value of body



33
34
35
# File 'lib/kward/config/core.rb', line 33

def body
  @body
end

#commandObject

Returns the value of attribute command

Returns:

  • (Object)

    the current value of command



33
34
35
# File 'lib/kward/config/core.rb', line 33

def command
  @command
end

#descriptionObject

Returns the value of attribute description

Returns:

  • (Object)

    the current value of description



33
34
35
# File 'lib/kward/config/core.rb', line 33

def description
  @description
end

#pathObject

Returns the value of attribute path

Returns:

  • (Object)

    the current value of path



33
34
35
# File 'lib/kward/config/core.rb', line 33

def path
  @path
end

Instance Method Details

#expand(arguments) ⇒ Object



34
35
36
# File 'lib/kward/config/core.rb', line 34

def expand(arguments)
  body.gsub("$ARGUMENTS", arguments.to_s)
end