-
Notifications
You must be signed in to change notification settings - Fork 175
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
Allow declaration of project addons #2601
Merged
Merged
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
vinistock
added
enhancement
New feature or request
server
This pull request should be included in the server gem's release notes
labels
Sep 23, 2024
vinistock
force-pushed
the
vs-allow-project-addons
branch
from
September 25, 2024 14:01
112041d
to
f55f9c0
Compare
andyw8
reviewed
Sep 25, 2024
andyw8
reviewed
Sep 25, 2024
vinistock
force-pushed
the
vs-allow-project-addons
branch
from
September 25, 2024 14:07
f55f9c0
to
08008fc
Compare
vinistock
force-pushed
the
vs-allow-project-addons
branch
from
September 25, 2024 14:36
08008fc
to
b0b8247
Compare
andyw8
approved these changes
Sep 25, 2024
vinistock
force-pushed
the
vs-allow-project-addons
branch
8 times, most recently
from
October 1, 2024 20:48
5d1f31b
to
2fbb862
Compare
❌ Deploy Preview for ruby-lsp failed.
|
vinistock
force-pushed
the
vs-allow-project-addons
branch
2 times, most recently
from
October 2, 2024 14:49
28aeaa9
to
bd83a91
Compare
st0012
approved these changes
Oct 2, 2024
vinistock
force-pushed
the
vs-allow-project-addons
branch
4 times, most recently
from
October 2, 2024 18:52
f9ad63b
to
dfced72
Compare
vinistock
force-pushed
the
vs-allow-project-addons
branch
from
October 2, 2024 19:59
7c50f3e
to
1bb4eec
Compare
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
enhancement
New feature or request
server
This pull request should be included in the server gem's release notes
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
Users may want to define project-specific addons for behaviour that only applies to a particular application. Supporting it is quite straight forward, so I think we should move forward and allow it.
Implementation
All of the mechanism to load the addons is already in place, the only limitation is that
Gem.find_files
won't find files that aren't in gems.We just need to run a glob pattern on the workspace path to find project specific ones.
Automated Tests
Added a test.