From fbe397ed5ae6529902f0ab30d9ee3975d4ae8355 Mon Sep 17 00:00:00 2001 From: Yasuda Toshiyuki Date: Wed, 14 Aug 2024 15:49:43 +0900 Subject: [PATCH] fix URLs --- lib/carrierwave/processing/rmagick.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/carrierwave/processing/rmagick.rb b/lib/carrierwave/processing/rmagick.rb index ed753e870..1c9aede6a 100644 --- a/lib/carrierwave/processing/rmagick.rb +++ b/lib/carrierwave/processing/rmagick.rb @@ -22,7 +22,7 @@ module CarrierWave # end # # Or create your own helpers with the powerful manipulate! method. Check - # out the RMagick docs at http://www.imagemagick.org/RMagick/doc/ for more + # out the RMagick docs at https://rmagick.github.io/ for more # info # # class MyUploader < CarrierWave::Uploader::Base @@ -111,7 +111,7 @@ def crop(left, top, width, height) ## # Changes the image encoding format to the given format # - # See even http://www.imagemagick.org/RMagick/doc/magick.html#formats + # See even https://rmagick.github.io/magick.html#formats # # === Parameters # @@ -165,7 +165,7 @@ def resize_to_limit(width, height) # image may be shorter or narrower than specified in the smaller dimension # but will not be larger than the specified values." # - # See even http://www.imagemagick.org/RMagick/doc/image3.html#resize_to_fit + # See even https://rmagick.github.io/image3.html#resize_to_fit # # === Parameters # @@ -191,7 +191,7 @@ def resize_to_fit(width, height) # specified dimensions while retaining the aspect ratio of the original # image. If necessary, crop the image in the larger dimension." # - # See even http://www.imagemagick.org/RMagick/doc/image3.html#resize_to_fill + # See even https://rmagick.github.io/image3.html#resize_to_fill # # === Parameters #