Module: TTYPromptHelper::Validator

Defined in:
lib/devlogs/helper/tty_prompt_helper.rb

Class Method Summary collapse

Class Method Details

.length_range(min: 0, max: 99) ⇒ Object



27
28
29
# File 'lib/devlogs/helper/tty_prompt_helper.rb', line 27

def self.length_range(min: 0, max: 99)
  ->(input) { input.size > min && input.size <= max }
end