# File lib/scrubyt/core/scraping/filters/base_filter.rb, line 69 def method_missing(method_name, *args, &block) case method_name.to_s when /^ensure.+/ constraints << Constraint.send("add_#{method_name.to_s}".to_sym, self, *args) else raise NoMethodError.new(method_name.to_s, method_name.to_s, args) end end