Add draw DSL loader to Purple::Client and spec for example usage - #29
Merged
Merged
Conversation
kalashnikovisme
deleted the
codex/implement-draw-method-functionality
branch
February 18, 2026 15:27
kalashnikovisme
added a commit
that referenced
this pull request
Feb 18, 2026
* Add draw using example * Fix * Add `draw` DSL loader to `Purple::Client` and spec for example usage (#29) * Add draw DSL loader and specs for example usage * Fix draw spec root path expectation type * Fix draw spec to avoid executing leaf path request * Document `draw` usage in README and AGENTS guide (#30) * Document draw usage in README and AGENTS guide * Update AGENTS.md * Update AGENTS.md with `draw` paths clarification Clarify usage of `draw` paths and content rules for drawn files.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
draw 'clients/v1').Description
Purple::Client.draw(file_path)to resolve a path relative to the calling file, accept extensionless paths by appending.rb, andclass_evalthe file contents in the client class context.caller_locations(1, 1).first.absolute_pathto compute the caller directory andFile.expand_pathto build the full file path before evaluation.spec/purple/draw_spec.rbwhich asserts the examplespec/examples/time_magic/clients/v1.rbdeclarations are loaded and produce the expected nestedapi,api/v1, andapi/v1/statuspaths.Testing
ruby -c lib/purple/client.rbwhich returned syntax OK.ruby -c spec/purple/draw_spec.rbwhich returned syntax OK.bundle exec rspec spec/purple/draw_spec.rb, but therspecexecutable could not be run becausebundle installfailed in this environment due to Rubygems returning403 Forbidden, so the full RSpec run could not be executed.Codex Task