Method: Bashly::Script::Command#group_string

Defined in:
lib/bashly/script/command.rb

#group_stringObject

Returns the string for the group caption



78
79
80
81
82
83
84
# File 'lib/bashly/script/command.rb', line 78

def group_string
  if group
    strings[:group] % { group: group }
  else
    strings[:commands]
  end
end