class Paperclip::Geometry

def square?

True if the dimensions represent a square
def square?
  height == width
end