lib/perfect_shape/shape.rb in perfect-shape-0.3.1 vs lib/perfect_shape/shape.rb in perfect-shape-0.3.2

- old
+ new

@@ -83,9 +83,13 @@ y = BigDecimal(y.to_s) [x, y] end # Subclasses must implement + def contain?(x_or_point, y = nil, outline: false, distance_tolerance: 0) + end + + # Subclasses must implement def ==(other) end end end