Files
fizzy/lib/rails_ext/array.rb
T
2024-10-17 21:44:49 -06:00

6 lines
121 B
Ruby

class Array
def to_choice_sentence
to_sentence two_words_connector: " or ", last_word_connector: ", or "
end
end