1. 1 Christian Romney

    You’re still missing something. This is better:

    def method_missing(meth, *args, &block)
    if (meth == :i_do_not_exist)
    puts “Yes, actually you do”
    else
    super(meth, *args, &block)
    end
    end

  2. 2 Matt Williams

    You are most definitely correct. Oops! Thanks for catching that.

Leave a Reply