Class: DynamicPaperclip::AttachmentStylesController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/dynamic_paperclip/attachment_styles_controller.rb

Instance Method Summary collapse

Instance Method Details

#action_missing(name, *args, &block) ⇒ Object



3
4
5
6
7
# File 'app/controllers/dynamic_paperclip/attachment_styles_controller.rb', line 3

def action_missing(name, *args, &block)
  if name =~ /^generate_(.+)$/
    send :generate, $1
  end
end