From ac2ccb753521c279fc17ae26e33359f7dec9d527 Mon Sep 17 00:00:00 2001 From: Marco Zühlke Date: Sun, 28 Oct 2018 12:21:29 +0100 Subject: add readme for grails plugin --- plugins/grails/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 plugins/grails/README.md (limited to 'plugins/grails') diff --git a/plugins/grails/README.md b/plugins/grails/README.md new file mode 100644 index 000000000..1b0eda1dd --- /dev/null +++ b/plugins/grails/README.md @@ -0,0 +1,15 @@ +# Grails plugin + +Adds tab-completion of Grails script names to the command line use of grails. +Looks for scripts in the following paths: + +- `$GRAILS_HOME/scripts` +- `~/.grails/scripts` +- `./scripts` +- `./plugins/*/scripts` + +To use it, add `grails` to the plugins array in your zshrc file: + +```zsh +plugins=(... grails) +``` -- cgit v1.2.3-70-g09d2 From 4e59ba755cb75793582566eacc6f042cb8f2461b Mon Sep 17 00:00:00 2001 From: Marc Cornellà Date: Sun, 28 Oct 2018 13:50:34 +0100 Subject: move path section after plugin-enabling section --- plugins/grails/README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'plugins/grails') diff --git a/plugins/grails/README.md b/plugins/grails/README.md index 1b0eda1dd..9d69b161e 100644 --- a/plugins/grails/README.md +++ b/plugins/grails/README.md @@ -1,15 +1,16 @@ # Grails plugin Adds tab-completion of Grails script names to the command line use of grails. -Looks for scripts in the following paths: - -- `$GRAILS_HOME/scripts` -- `~/.grails/scripts` -- `./scripts` -- `./plugins/*/scripts` To use it, add `grails` to the plugins array in your zshrc file: ```zsh plugins=(... grails) ``` + +It looks for scripts in the following paths: + +- `$GRAILS_HOME/scripts` +- `~/.grails/scripts` +- `./scripts` +- `./plugins/*/scripts` -- cgit v1.2.3-70-g09d2 From c87eea8bdb19aa3d3324158e83518140bf1c2b28 Mon Sep 17 00:00:00 2001 From: Marc Cornellà Date: Sun, 28 Oct 2018 13:51:26 +0100 Subject: add link --- plugins/grails/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/grails') diff --git a/plugins/grails/README.md b/plugins/grails/README.md index 9d69b161e..6bf2ac1e6 100644 --- a/plugins/grails/README.md +++ b/plugins/grails/README.md @@ -1,6 +1,6 @@ # Grails plugin -Adds tab-completion of Grails script names to the command line use of grails. +Adds tab-completion of [Grails](https://grails.org/) script names to the command line use of grails. To use it, add `grails` to the plugins array in your zshrc file: -- cgit v1.2.3-70-g09d2 From 2d74c1bf2beaef4bd6ee6b9448d170450c45b172 Mon Sep 17 00:00:00 2001 From: Mike Truso Date: Sun, 28 Oct 2018 13:26:08 -0500 Subject: grails readme (#7365) --- plugins/grails/README.md | 57 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 56 insertions(+), 1 deletion(-) (limited to 'plugins/grails') diff --git a/plugins/grails/README.md b/plugins/grails/README.md index 6bf2ac1e6..64b4a9f07 100644 --- a/plugins/grails/README.md +++ b/plugins/grails/README.md @@ -1,6 +1,6 @@ # Grails plugin -Adds tab-completion of [Grails](https://grails.org/) script names to the command line use of grails. +This plugin adds completion for the [Grails 2 CLI](https://grails.github.io/grails2-doc/2.5.x/guide/commandLine.html) To use it, add `grails` to the plugins array in your zshrc file: @@ -14,3 +14,58 @@ It looks for scripts in the following paths: - `~/.grails/scripts` - `./scripts` - `./plugins/*/scripts` + +## Grails Commands +- `add-proxy` +- `alias` +- `bootstrap` +- `bug-report` +- `clean` +- `clean-all` +- `clear-proxy` +- `compile` +- `console` +- `create-app` +- `create-controller` +- `create-domain-class` +- `create-filters` +- `create-integration-test` +- `create-multi-project-build` +- `create-plugin` +- `create-pom` +- `create-script` +- `create-service` +- `create-tag-lib` +- `create-unit-test` +- `dependency-report` +- `doc` +- `help` +- `init` +- `install-app-templates` +- `install-dependency` +- `install-plugin` +- `install-templates` +- `integrate-with` +- `interactive` +- `list-plugin-updates` +- `list-plugins` +- `migrate-docs` +- `package` +- `package-plugin` +- `plugin-info` +- `refresh-dependencies` +- `remove-proxy` +- `run-app` +- `run-script` +- `run-war` +- `set-grails-version` +- `set-proxy` +- `set-version` +- `shell` +- `stats` +- `stop-app` +- `test-app` +- `uninstall-plugin` +- `url-mappings-report` +- `war` +- `wrapper` -- cgit v1.2.3-70-g09d2