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....
| import java.io.BufferedReader; | |
| import java.io.File; | |
| import java.io.FileReader; | |
| import java.util.Date; | |
| import java.util.HashMap; | |
| import java.util.LinkedList; | |
| import java.util.List; | |
| import java.util.Map; |
| 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() |