app/models/spina/image.rb in spina-2.12.0 vs app/models/spina/image.rb in spina-2.13.0

- old
+ new

@@ -2,31 +2,31 @@ class Image < ApplicationRecord belongs_to :media_folder, optional: true has_one_attached :file - scope :sorted, -> { order('created_at DESC') } + scope :sorted, -> { order("created_at DESC") } def name file.try(:filename).to_s end def variant(options) return "" unless file.attached? - return file if file.content_type.include?('svg') + return file if file.content_type.include?("svg") return file unless file.variable? file.variant(options) end def content self end - def thumbnail(size = '100x100', modifier = '^') + def thumbnail(size = "100x100", modifier = "^") variant( combine_options: { - gravity: 'center', + gravity: "center", thumbnail: "#{size}#{modifier}", extent: size } ) end