diff --git a/src/main/groovy/geb/GebGrailsPlugin.groovy b/src/main/groovy/geb/GebGrailsPlugin.groovy index 14a275b..ce277b2 100644 --- a/src/main/groovy/geb/GebGrailsPlugin.groovy +++ b/src/main/groovy/geb/GebGrailsPlugin.groovy @@ -11,14 +11,14 @@ class GebGrailsPlugin extends Plugin { def pluginExcludes = [ "grails-app/views/error.gsp" ] - def title = "Grails Geb Plugin" - def author = "Graeme Rocher" - def authorEmail = "grocher@pivotal.io" + def title = "Grace Geb Plugin" + def author = "Michael Yan" + def authorEmail = "rain@rainboyan.com" def description = '''\ Plugin that adds Geb functional testing code generation features. ''' - def documentation = "https://plugins.grails.org/plugin/grails/geb" + def documentation = "https://github.com/graceframework/grace-geb" def license = "APACHE" - def issueManagement = [system: "Github Issues", url: "https://github.com/grails/geb/issues"] - def scm = [url: "https://github.com/grails/geb"] + def issueManagement = [system: "Github Issues", url: "https://github.com/graceframework/grace-geb"] + def scm = [url: "https://github.com/graceframework/grace-geb"] } diff --git a/src/main/scripts/CreateFunctionalTest.groovy b/src/main/scripts/CreateFunctionalTest.groovy index 683c3ec..2f08cb2 100644 --- a/src/main/scripts/CreateFunctionalTest.groovy +++ b/src/main/scripts/CreateFunctionalTest.groovy @@ -1,5 +1,5 @@ description("Creates a Geb Functional Test") { - usage "grails create-functional-test [TEST NAME]" + usage "grace create-functional-test [TEST NAME]" argument name:'Test Name', description:"The name of the test" completer AllClassCompleter }