# File lib/compass/configuration/inheritance.rb, line 268
        def respond_to?(meth)
          if super
            true
          elsif inherited_data
            inherited_data.respond_to?(meth)
          else
            false
          end
        end