method
any
v4.2.7 -
Show latest stable
- Class:
ActionController::MimeResponds::Collector
any(*args, &block)public
No documentation available.
# File actionpack/lib/action_controller/metal/mime_responds.rb, line 256
def any(*args, &block)
if args.any?
args.each { |type| send(type, &block) }
else
custom(Mime::ALL, &block)
end
end