Class: RubyLLM::MCP::Configuration::Tasks
- Inherits:
-
Object
- Object
- RubyLLM::MCP::Configuration::Tasks
- Defined in:
- lib/ruby_llm/mcp/configuration.rb
Instance Attribute Summary collapse
-
#enabled ⇒ Object
Returns the value of attribute enabled.
Instance Method Summary collapse
- #enabled? ⇒ Boolean
-
#initialize ⇒ Tasks
constructor
A new instance of Tasks.
Constructor Details
#initialize ⇒ Tasks
Returns a new instance of Tasks.
119 120 121 |
# File 'lib/ruby_llm/mcp/configuration.rb', line 119 def initialize @enabled = false end |
Instance Attribute Details
#enabled ⇒ Object
Returns the value of attribute enabled.
117 118 119 |
# File 'lib/ruby_llm/mcp/configuration.rb', line 117 def enabled @enabled end |
Instance Method Details
#enabled? ⇒ Boolean
123 124 125 |
# File 'lib/ruby_llm/mcp/configuration.rb', line 123 def enabled? @enabled end |