10 lines
231 B
Ruby
10 lines
231 B
Ruby
module RailsExt
|
|
module ActiveSupportArrayConversions
|
|
def to_choice_sentence
|
|
to_sentence two_words_connector: " or ", last_word_connector: ", or "
|
|
end
|
|
end
|
|
end
|
|
|
|
Array.include RailsExt::ActiveSupportArrayConversions
|