ruby CarrierWave

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby CarrierWave相关的知识,希望对你有一定的参考价值。

# create a specific version
ProductImage.find(46).image.recreate_versions!(:xs)

# check if version exists
# ProductImage.find(46).<uploader>.<version>.file.exists?
ProductImage.find(46).image.xs.file.exists?


	task :xs => :environment do
		begin

			img_count = 0

			ProductImage.all.find_each(batch_size: 500) do |product_image|

				img_count += 1

				if product_image.image.xs.file.exists?
					puts "Exists: #{product_image.id}"
				else
					# Doesn't exist, create version
					product_image.image.recreate_versions!(:xs)
					puts "Added: #{product_image.id}"
				end

			end


			puts "Total ProductImage count: #{img_count}"

		rescue Exception => e
			puts "Exception: #{e}"
		end
	end

以上是关于ruby CarrierWave的主要内容,如果未能解决你的问题,请参考以下文章

ruby 更新s3上的carrierwave图像

ruby carrierwave.rb

ruby Carrierwave

ruby Carrierwave图像模型验证图像尺寸/高度/宽度。

扩展 ruby​​ 特征类以加载 CarrierWave

ruby 在Rails中从CarrierWave过渡到Dragonfly