Calling #all fails with the error: `Excon::Error::Socket: 25:28: FATAL: Document is empty (Nokogiri::XML::SyntaxError)`. This was because of the parser not handling nil creationDate values:
```
when 'creationDate'
@image[name] = Time.parse(value)
```
This commit ensures nil `creationDate` fields are not parsed.