Мне особенно нравится использовать method_missing
, особенно когда код, который вы хотите использовать, очень похож на различные вызовы методов.Вот пример с этого сайта - всякий раз, когда кто-то вызывает x.boo
и boo
не существует, method_missing вызывается с boo
, аргументами boo
и (необязательно) блоком:
class ActiveRecord::Base
def method_missing(meth, *args, &block)
if meth.to_s =~ /^find_by_(.+)$/
run_find_by_method($1, *args, &block)
else
super # You *must* call super if you don't handle the
# method, otherwise you'll mess up Ruby's method
# lookup.
end
end
def run_find_by_method(attrs, *args, &block)
# Make an array of attribute names
attrs = attrs.split('_and_')
# #transpose will zip the two arrays together like so:
# [[:a, :b, :c], [1, 2, 3]].transpose
# # => [[:a, 1], [:b, 2], [:c, 3]]
attrs_with_args = [attrs, args].transpose
# Hash[] will take the passed associative array and turn it
# into a hash like so:
# Hash[[[:a, 2], [:b, 4]]] # => { :a => 2, :b => 4 }
conditions = Hash[attrs_with_args]
# #where and #all are new AREL goodness that will find all
# records matching our conditions
where(conditions).all
end
end
define_method
также похоже, что это будет работать для вас, но у меня меньше опыта с этим, чем method_missing
.Вот пример по той же ссылке:
%w(user email food).each do |meth|
define_method(meth) { @data[meth.to_sym] }
end