Skip to content

Commit

Permalink
Merge pull request #2750 from yasudatoshiyuki/fix-urls
Browse files Browse the repository at this point in the history
fix URLs
  • Loading branch information
mshibuya authored Aug 25, 2024
2 parents d1509b3 + fbe397e commit 8a074f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/carrierwave/processing/rmagick.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
#
Expand Down Expand Up @@ -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
#
Expand All @@ -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
#
Expand Down

0 comments on commit 8a074f6

Please sign in to comment.