# File lib/compass/configuration/inheritance.rb, line 144 def method_missing(meth, *args, &block) if inherited_data inherited_data.send(meth, *args, &block) else raise NoMethodError, meth.to_s end end