mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
a9dc45459a
A few have been left for aesthetic reasons, but have made a pass and removed most of them. Note that if the method `foo` returns an array, `foo << 1` is a regular push, nothing to do with assignments, so no self required.
41 lines
1.3 KiB
Ruby
41 lines
1.3 KiB
Ruby
require "action_dispatch/http/mime_type"
|
|
|
|
module AbstractController
|
|
module Collector
|
|
def self.generate_method_for_mime(mime)
|
|
sym = mime.is_a?(Symbol) ? mime : mime.to_sym
|
|
class_eval <<-RUBY, __FILE__, __LINE__ + 1
|
|
def #{sym}(*args, &block)
|
|
custom(Mime[:#{sym}], *args, &block)
|
|
end
|
|
RUBY
|
|
end
|
|
|
|
Mime::SET.each do |mime|
|
|
generate_method_for_mime(mime)
|
|
end
|
|
|
|
Mime::Type.register_callback do |mime|
|
|
generate_method_for_mime(mime) unless instance_methods.include?(mime.to_sym)
|
|
end
|
|
|
|
protected
|
|
|
|
def method_missing(symbol, &block)
|
|
unless mime_constant = Mime[symbol]
|
|
raise NoMethodError, "To respond to a custom format, register it as a MIME type first: " \
|
|
"http://guides.rubyonrails.org/action_controller_overview.html#restful-downloads. " \
|
|
"If you meant to respond to a variant like :tablet or :phone, not a custom format, " \
|
|
"be sure to nest your variant response within a format response: " \
|
|
"format.html { |html| html.tablet { ... } }"
|
|
end
|
|
|
|
if Mime::SET.include?(mime_constant)
|
|
AbstractController::Collector.generate_method_for_mime(mime_constant)
|
|
send(symbol, &block)
|
|
else
|
|
super
|
|
end
|
|
end
|
|
end
|
|
end
|