# File lib/RMagick.rb, line 1490 def method_missing(methID, *args, &block) begin if @scene self[@scene].send(methID, *args, &block) else super end rescue NoMethodError raise NoMethodError, "undefined method `#{methID.id2name}' for #{self.class}" rescue Exception $@.delete_if { |s| /:in `send'$/.match(s) || /:in `method_missing'$/.match(s) } raise end end