# File lib/compass/configuration/inheritance.rb, line 224
        def default_for(attribute)
          method = "default_#{attribute}".to_sym
          if respond_to?(method)
            send(method)
          end
        end