Module: VSM::ActsAsTool::ClassMethods
- Defined in:
- lib/vsm/tool/acts_as_tool.rb
Instance Method Summary collapse
- #tool_description(value = nil) ⇒ Object
- #tool_name(value = nil) ⇒ Object
- #tool_schema(value = nil) ⇒ Object
Instance Method Details
#tool_description(value = nil) ⇒ Object
8 |
# File 'lib/vsm/tool/acts_as_tool.rb', line 8 def tool_description(value = nil); @tool_description = value if value; @tool_description; end |
#tool_name(value = nil) ⇒ Object
7 |
# File 'lib/vsm/tool/acts_as_tool.rb', line 7 def tool_name(value = nil); @tool_name = value if value; @tool_name; end |
#tool_schema(value = nil) ⇒ Object
9 |
# File 'lib/vsm/tool/acts_as_tool.rb', line 9 def tool_schema(value = nil); @tool_schema = value if value; @tool_schema; end |