chore: start adding browse view

This commit is contained in:
Nelson Jovel 2024-01-26 07:43:52 -08:00
parent a538eb72f2
commit f71f88a4ac
12 changed files with 296 additions and 87 deletions

View file

@ -0,0 +1,7 @@
module StringMonkeyPatches
def valid_likert_score?
to_i.between? 1, 5
end
end
String.include StringMonkeyPatches