All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ofiles.profile.5.0.1.source-code.create-generator-command.groovy Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
description( "Creates a new generate-* command for the profile" ) {
  usage """grails create-generator-command [Command Name] [Target Dir] [Convention]

Example: grails create-generator-command Controller controllers"""
  argument name:'Command Name', description:"The name of the command", required:true
  argument name:'Target Directory', description:"The target directory", required:true
  argument name:'Convention', description:"The convention to use for file names, defaults to command name", required:false
  flag name:'force', description:"Whether to overwrite existing files"
}

if(args) {
    def scriptName = GrailsNameUtils.getClassNameForLowerCaseHyphenSeparatedName(args[0]) 
    def model = model( scriptName ).asMap()
    model.put('targetDirectory', args[1])
    model.put('convention', args.size() == 3 ? args[2] : model.simpleName)
    

    render template:'commands/GeneratorCommand.groovy',
           destination:file("commands/generate-${model.lowerCaseName}.groovy"),
           model: model,
           overwrite: flag('force')

    render template:'templates/GeneratorTemplate.groovy',
           destination:file("templates/${args[1]}/${model.simpleName}.groovy"),
           model: model,
           overwrite: flag('force')           
}
else {
    error "No command name specified"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy