-
Notifications
You must be signed in to change notification settings - Fork 26
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
ogma-cli
: Provide new standalone command. Refs #170.
#171
Merged
ivanperez-keera
merged 10 commits into
nasa:develop
from
ivanperez-keera:develop-standalone
Nov 22, 2024
Merged
ogma-cli
: Provide new standalone command. Refs #170.
#171
ivanperez-keera
merged 10 commits into
nasa:develop
from
ivanperez-keera:develop-standalone
Nov 22, 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
To make Ogma more easily extensible, we want to make it possible to store the format specifications in individual files, so that they do not have to be included with the code and they can be provided by users. This commit makes a JSONFormat readable, so that it can be easily read from a file.
The CLI of Ogma lacks uniformity: some commands are driven by the input format, others by the output format (e.g., ROS, cFS). To make Ogma easier to use, we should provide an interface that is driven by one or the other, but not both. This commit introduces a new standalone command, at core level, that produces an individual Copilot specification from an input file.
The CLI of Ogma lacks uniformity: some commands are driven by the input format, others by the output format (e.g., ROS, cFS). To make Ogma easier to use, we should provide an interface that is driven by one or the other, but not both. A prior commit has introduced a new standalone command, at core level, that produces an individual Copilot specification from an input file. This commit exposes that command to the user via the CLI.
The CLI of Ogma lacks uniformity: some commands are driven by the input format, others by the output format (e.g., ROS, cFS). To make Ogma easier to use, we should provide an interface that is driven by one or the other, but not both. A prior commit has introduced a new standalone command that can be used to produce individual Copilot specs. This commit removes the commands made redundant by that new command, at CLI level.
The CLI of Ogma lacks uniformity: some commands are driven by the input format, others by the output format (e.g., ROS, cFS). To make Ogma easier to use, we should provide an interface that is driven by one or the other, but not both. A prior commit has introduced a new standalone command that can be used to produce individual Copilot specs, and redundant commands have been removed from the CLI. This commit removes the corresponding redundant core commands.
The CLI of Ogma lacks uniformity: some commands are driven by the input format, others by the output format (e.g., ROS, cFS). To make Ogma easier to use, we should provide an interface that is driven by one or the other, but not both. A prior commit has introduced a new standalone command that replaces two prior existing commands. This commit adjusts the core package tests to use the new standalone command.
The CLI of Ogma lacks uniformity: some commands are driven by the input format, others by the output format (e.g., ROS, cFS). To make Ogma easier to use, we should provide an interface that is driven by one or the other, but not both. A prior commit has introduced a new standalone command that replaces two prior existing commands. This commit adjusts the CLI package tests to use the new standalone command.
Change Manager: Verified that:
|
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.
Provide a new standalone command to make CLI uniform, as prescribed in the solution proposed for #170 .