lib/elasticsearch/model/adapters/default.rb in elasticsearch-model-0.1.1 vs lib/elasticsearch/model/adapters/default.rb in elasticsearch-model-0.1.2
- old
+ new
@@ -34,9 +34,15 @@
# @abstract Implement this method in your adapter
#
def __find_in_batches(options={}, &block)
raise NotImplemented, "Method not implemented for default adapter"
end
+
+ # @abstract Implement this method in your adapter
+ #
+ def __transform
+ raise NotImplemented, "Method not implemented for default adapter"
+ end
end
end
end
end