Skip to content

Instantly share code, notes, and snippets.

@spp
Created November 2, 2009 05:46
Show Gist options
  • Save spp/223976 to your computer and use it in GitHub Desktop.
Save spp/223976 to your computer and use it in GitHub Desktop.
class Array
def to_sentence(options = {})
# en-US: "One, Two, and Three" en-UK: "One, Two and Three"
options[:last_word_connector] ||= " and "
super
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment