Rename FileHelper.images to FileHelper.supported_images.

This commit is contained in:
Guo Xiang Tan
2018-09-10 10:03:44 +08:00
parent 02f582eca0
commit d59e635a77
2 changed files with 5 additions and 7 deletions

View File

@ -100,14 +100,12 @@ class FileHelper
).optimize_image!(filename)
end
private
def self.images
@@images ||= Set.new %w{jpg jpeg png gif tif tiff bmp svg webp ico}
def self.supported_images
@@supported_images ||= Set.new %w{jpg jpeg png gif tif tiff bmp svg webp ico}
end
def self.images_regexp
@@images_regexp ||= /\.(#{images.to_a.join("|")})$/i
@@images_regexp ||= /\.(#{supported_images.to_a.join("|")})$/i
end
end