Your repository has two commits:
$ git log --oneline
957fbfb No, I am your father.
9bb71ff A long time ago in a galaxy far, far away....
| package com.jetbootlabs.services | |
| /* | |
| * Truncates H2 tables mapped by the domainClasses variable. Useful for cleaning up test data. | |
| * | |
| * Temporarily disables referential integrity to avoid constraint violation errors when | |
| * deleting records. | |
| * | |
| * Inspired by Luke Daley's blog post on how to do this in MySQL: | |
| * http://ldaley.com/post/398082618/brute-force-fixture-cleanup-in-grails |
| // saving from url to a file (append) | |
| new File("output.xml") << new URL ("http://some.url/some/path.xml").getText() |