mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 13:38:12 -08:00
7 lines
122 B
Ruby
7 lines
122 B
Ruby
module StringMonkeyPatches
|
|
def valid_likert_score?
|
|
to_i.between? 1, 5
|
|
end
|
|
end
|
|
|
|
String.include StringMonkeyPatches
|