Class: RailsClaudeSkills::Configuration
- Inherits:
-
Object
- Object
- RailsClaudeSkills::Configuration
- Defined in:
- lib/rails_claude_skills.rb
Instance Attribute Summary collapse
-
#agents_path ⇒ Object
Returns the value of attribute agents_path.
-
#default_model ⇒ Object
Returns the value of attribute default_model.
-
#skills_path ⇒ Object
Returns the value of attribute skills_path.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
21 22 23 24 25 |
# File 'lib/rails_claude_skills.rb', line 21 def initialize @skills_path = ".claude/skills" @agents_path = ".claude/agents" @default_model = "sonnet" end |
Instance Attribute Details
#agents_path ⇒ Object
Returns the value of attribute agents_path.
19 20 21 |
# File 'lib/rails_claude_skills.rb', line 19 def agents_path @agents_path end |
#default_model ⇒ Object
Returns the value of attribute default_model.
19 20 21 |
# File 'lib/rails_claude_skills.rb', line 19 def default_model @default_model end |
#skills_path ⇒ Object
Returns the value of attribute skills_path.
19 20 21 |
# File 'lib/rails_claude_skills.rb', line 19 def skills_path @skills_path end |