Class: ActiveAgent::ActionPrompt::Base::NullPrompt

Inherits:
Object
  • Object
show all
Defined in:
lib/active_agent/action_prompt/base.rb

Overview

:nodoc:

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missingObject



316
317
318
# File 'lib/active_agent/action_prompt/base.rb', line 316

def method_missing(...)
  nil
end

Instance Method Details

#headerObject



308
309
310
# File 'lib/active_agent/action_prompt/base.rb', line 308

def header
  {}
end

#messageObject



304
305
306
# File 'lib/active_agent/action_prompt/base.rb', line 304

def message
  ""
end

#respond_to?(string, include_all = false) ⇒ Boolean

Returns:

  • (Boolean)


312
313
314
# File 'lib/active_agent/action_prompt/base.rb', line 312

def respond_to?(string, include_all = false)
  true
end