lib/upsert/binary.rb in upsert-0.4.0 vs lib/upsert/binary.rb in upsert-0.5.0

- old
+ new

@@ -1,7 +1,6 @@ class Upsert # A wrapper class for binary strings so that Upsert knows to escape them as such. # # Create them with +Upsert.binary(x)+ - class Binary < ::String - end + Binary = Struct.new(:value) end