extra_docs/Configuration.md in dragonfly-0.7.7 vs extra_docs/Configuration.md in dragonfly-0.8.0

- old
+ new

@@ -63,19 +63,30 @@ Saved configurations ==================== Saved configurations are useful if you often configure the app the same way. There are a number that are provided with Dragonfly: +ImageMagick +----------- + + app.configure_with(:imagemagick) + +The {Dragonfly::Config::ImageMagick ImageMagick configuration} registers the app with the {Dragonfly::Analysis::ImageMagickAnalyser ImageMagickAnalyser}, {Dragonfly::Processing::ImageMagickProcessor ImageMagickProcessor}, +{Dragonfly::Encoding::ImageMagickEncoder ImageMagickEncoder} and {Dragonfly::Generation::ImageMagickGenerator ImageMagickGenerator}, and adds the 'job shortcuts' +`thumb`, `jpg`, `png`, `gif` and `convert`. + +The file 'dragonfly/rails/images' does this for you. + +The processor, analyser, encoder and generator pass data around using tempfiles. + RMagick ------- app.configure_with(:rmagick) The {Dragonfly::Config::RMagick RMagick configuration} registers the app with the {Dragonfly::Analysis::RMagickAnalyser RMagickAnalyser}, {Dragonfly::Processing::RMagickProcessor RMagickProcessor}, {Dragonfly::Encoding::RMagickEncoder RMagickEncoder} and {Dragonfly::Generation::RMagickGenerator RMagickGenerator}, and adds the 'job shortcuts' `thumb`, `jpg`, `png` and `gif`. - -The file 'dragonfly/rails/images' does this for you. By default the processor, analyser, encoder and generator pass data around using tempfiles. You can make it pass data around using in-memory strings using app.configure_with(:rmagick, :use_filesystem => false)