jdaugherty commented on code in PR #14994: URL: https://github.com/apache/grails-core/pull/14994#discussion_r2289130783
########## grails-forge/grails-forge-core/src/main/java/org/grails/forge/feature/grailsWrapper/GrailsWrapper.java: ########## @@ -45,12 +45,12 @@ public String getName() { @Override public String getTitle() { - return "Grails Wrapper for Grails"; + return "Grails Wrapper"; } @Override public String getDescription() { - return "Gives you the ability to run grails shell from terminal."; + return "Enables running the Grails CLI directly without requiring a local Grails distribution installed."; Review Comment: Gradle refers to their wrapper as: The Wrapper is a script (called gradlew or gradlew.bat) that invokes a declared version of Gradle, downloading it beforehand if necessary. I But hours downloads the version of grails matching the project version. A tiny wrapper script that auto-downloads the Grails Delegating CLI on demand and transparently delegates all commands to it. ########## grails-forge/grails-forge-core/src/main/java/org/grails/forge/feature/grailsWrapper/GrailsWrapper.java: ########## @@ -45,12 +45,12 @@ public String getName() { @Override public String getTitle() { - return "Grails Wrapper for Grails"; + return "Grails Wrapper"; } @Override public String getDescription() { - return "Gives you the ability to run grails shell from terminal."; + return "Enables running the Grails CLI directly without requiring a local Grails distribution installed."; Review Comment: Gradle refers to their wrapper as: The Wrapper is a script (called gradlew or gradlew.bat) that invokes a declared version of Gradle, downloading it beforehand if necessary. I But ours downloads the version of grails matching the project version. A tiny wrapper script that auto-downloads the Grails Delegating CLI on demand and transparently delegates all commands to it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@grails.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org