Module ActionController::Macros::ImageMagick
In: actionpack/lib/action_controller/macros/image_magick.rb

Classes and Modules

Module ActionController::Macros::ImageMagick::ClassMethods
Class ActionController::Macros::ImageMagick::RecipeSet

Constants

DEFAULT_OPTIONS = { :action_name=>:imagemagick, :cache=>nil, :prerender=>false, :max_recipe_level=>:builtin, :commands_param=>:commands }   The default configuration options.
GlobalRecipes = RecipeSet.new   Global recipes, available in every controller.
BuiltinRecipes = RecipeSet.new.add do |recipes| # standard RMagick commands recipes.add :blur_image, Proc.new { |image, radius, sigma| image.blur_image(radius.to_f, sigma.to_f) }   Recipes for the standard RMagick commands.

[Validate]