module ISO3166::CountryFinderMethods
def respond_to_missing?(method_name, include_private = false)
def respond_to_missing?(method_name, include_private = false) matches = method_name.to_s.match(FIND_BY_REGEX) if matches && matches[3] instance_methods.include?(matches[3].to_sym) else super end end