diff options
author | mms <git@sapka.me> | 2025-01-08 21:24:33 +0100 |
---|---|---|
committer | mms <git@sapka.me> | 2025-01-08 21:24:33 +0100 |
commit | 4004a55b0e324c35cbc7d58b831e49efd484ab93 (patch) | |
tree | 3ff4c68c28165b6d08c1a49532e8421193433d65 /new/lib/crys/image_processor.rb | |
parent | 2781360c7c25404c5a1fd03ed3472d43367ed8c6 (diff) |
feat: rubocop
Diffstat (limited to 'new/lib/crys/image_processor.rb')
-rw-r--r-- | new/lib/crys/image_processor.rb | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/new/lib/crys/image_processor.rb b/new/lib/crys/image_processor.rb index b7e2fd67..306c0769 100644 --- a/new/lib/crys/image_processor.rb +++ b/new/lib/crys/image_processor.rb @@ -1,26 +1,24 @@ +# frozen_string_literal: true + module Crys class ImageProcessor def initialize(path:, filename:, width: :auto) @path = path @filename = filename @file = File.read(path) + @width = width end def relative_path filename end - def filename - filename - end - def processed_asset file.to_s end - private + private - attr_reader :path, :filename, :file - + attr_reader :path, :filename, :file end end |