Method: Satis::Configuration#default_help_text

Defined in:
lib/satis/configuration.rb

#default_help_text(template, object, method, additional_scope) ⇒ Object



33
34
35
36
37
38
39
40
# File 'lib/satis/configuration.rb', line 33

def default_help_text(template, object, method, additional_scope)
  if @default_help_text.is_a?(Proc)
    instance_exec(template, object, method, additional_scope,
      &@default_help_text)
  else
    @default_help_text
  end
end