Release 0.1.7
The inclusion of Enumerable(QueryResult)
in RethinkDB::QueryResult
failed to satisfy the abstract type checking of Crystal v0.30
Whilst we could expose enumeration, using the #as_h
and #as_a
methods are more explicit.
Changed
#as_a
returnsArray(QueryResult)
#as_a?
returnsArray(QueryResult)?
#as_h
returnsHash(String, QueryResult)
#as_h?
returnsHash(String, QueryResult)?
RethinkDB::QueryResult::Type
is now analogous toJSON::Any::Type
- reql spec helpers moved from
spec/reql_spec.cr
tospec/spec_helper.cr
- added
skip
methods
Removed
Enumerable(QueryResult)
onRethinkDB::QueryResult