# File lib/rubyrep/configuration.rb, line 224
    def each_matching_option(key)
      yield nil, options[key] if options.include?(key)
      tables_with_options.each do |table_options|
        yield table_options[0], table_options[1][key] if table_options[1].include? key
      end
    end