Sha256: 9bb54ae117c05118fdf1b6383f2ccf1e42ae409de64e9ba061601e4aaab96436
Contents?: true
Size: 410 Bytes
Versions: 7
Compression:
Stored size: 410 Bytes
Contents
module Helpers module Search def status_class_for(results_count) case results_count when (51..100) :lots when (26..50) :many when (16..25) :several when (8..15) :some when (2..7) :few when 1 :one when 0 :none else :too_many end end end end
Version data entries
7 entries across 7 versions & 1 rubygems