Skip to content

Instantly share code, notes, and snippets.

View andyt's full-sized avatar

Ash Triggs andyt

  • Pembrokeshire, Wales, UK
View GitHub Profile
# Block gsub for formatting the case of a place name.
# List of stopwords probably not exclusive...
def capitalize_town(name)
name.gsub(/\b([a-z])+\b/) { |match| ['on', 'and', 'in'].include?(match) ? match : match.capitalize }
end