master
1class ThumbnailVersion < Version
2  def initialize(photo)
3    super(photo, :thumb, "thumb_")
4  end
5
6  def adjust(image)
7    image.resize_to_fill(width: 260, height: 260)
8  end
9end