From edd5de011fef10d39e126b1c5f4667aa3789b092 Mon Sep 17 00:00:00 2001 From: Anton Chuchkalov Date: Sat, 9 Apr 2016 13:14:59 +0300 Subject: [PATCH] #1879: remove recently added section from readme --- README.md | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/README.md b/README.md index 417e79494..a322c374d 100644 --- a/README.md +++ b/README.md @@ -536,26 +536,6 @@ User.find_each do |user| end ``` -### Recreating versions with `:from_version` dependency - -Imagine you have a version with `:from_version`: - -```ruby -class MyUploader < CarrierWave::Uploader::Base - - version :thumb do - process resize_to_fill: [280, 280] - end - - version :small_thumb, from_version: :thumb do - process resize_to_fill: [20, 20] - end - -end -``` - -In this case, when you call `recreate_versions!(:small_thumb)`, both `:small_thumb` and `:thumb` versions will be recreated. - ## Configuring CarrierWave CarrierWave has a broad range of configuration options, which you can configure,