-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expand upon the SourceElement idea #860
Merged
lacasseio
merged 31 commits into
lacasseio/release-1.0-development
from
lacasseio/source-elements
Feb 28, 2024
Merged
Expand upon the SourceElement idea #860
lacasseio
merged 31 commits into
lacasseio/release-1.0-development
from
lacasseio/source-elements
Feb 28, 2024
Conversation
This file contains 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
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
We want to move all of our plugins to use the ModelMap API as it will allow for better discovery and reporting. Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
We should have a specific API for this use case, but for now, this solution is good enough. Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
We will circle back to those project later. Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
Signed-off-by: Daniel Lacasse <[email protected]>
lacasseio
merged commit Feb 28, 2024
d734313
into
lacasseio/release-1.0-development
6 of 13 checks passed
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.
The
SourceElement
concept comes from the newer native effort from Gradle core (way back) and is a very convenient way to isolate elements of sources for text fixtures. We used the same fixtures to create the source code for the samples as it's a general-purpose programmatic templating engine. The major drawback with the SourceElement API is the inability to edit the embedded source code easily. We wrote some custom logic a while back to generate the matchingSourceElement
for pre-defined directories. Although the idea is good, we must switch between three contexts:SourceElement
, pre-defined directories and the build system itself. A better approach is to stay with theSourceElement
when authoring the fixtures and optionally attach the element to a file/directory on disk. Then, we can leave the build system to perform the link and ensure the files/directories are accessible at runtime.It simplifies everything with the following steps:
1- Author "test projects" to ensure the correctness of the source element required
2- Create the source element API layer (built however a developer wants)
3- Use the
SourceElement
as normal classes for our template needsThis work will unblock the better sample authoring story.