Created
May 15, 2013 20:57
-
-
Save techieBrandon/5587313 to your computer and use it in GitHub Desktop.
Spit out all resources and how they are being processed for Grails
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
def pull = ctx.getBean('grailsResourceProcessor') | |
def userDir = System.properties['user.home'] | |
def outFile = new File("${userDir}/resource.out") | |
outFile.withPrintWriter { wr-> | |
wr.print(pull.dumpResources()) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment