module LicenseFinder::License::Text

def self.normalize_punctuation(text)

def self.normalize_punctuation(text)
  text.gsub(SPACES, ' ')
      .gsub(QUOTES, '"')
      .strip
end