(line)
| 86 | |
| 87 | # FIXME: this does not smell right as we ignore the matched value |
| 88 | def get_podspec_source(line): |
| 89 | if '.source' in line: |
| 90 | match = get_value(name='source', matcher=parse_podspec_source, line=line) |
| 91 | if match: |
| 92 | source = re.sub(r'/*.*source.*?>', '', line) |
| 93 | stripped_source = re.sub(r',.*', '', source) |
| 94 | return get_cleaned_string(stripped_source) |
| 95 | |
| 96 | |
| 97 | def get_emails(line): |
nothing calls this directly
no test coverage detected