Skip to content

Instantly share code, notes, and snippets.

@amiel
Created October 19, 2010 22:28
Show Gist options
  • Save amiel/635276 to your computer and use it in GitHub Desktop.
Save amiel/635276 to your computer and use it in GitHub Desktop.
def indefinitize(string)
vowels = "aeiou".split(//)
vowels.include?(string.first.downcase) ? "an #{string}" : "a #{string}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment