Sha256: 3a2307b320f80256c068e5abee1e567a9b6ede1db77224fad7ea8d157f449f6a

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

# frozen_string_literal: true

require_relative 'autoload'

module CodebreakerKirill
  class Validations
    include Settings

    def self.validate_name(name)
      raise "Name shouldn't be empty" if name.empty?
      raise 'Name should be string' if name.class != String
      raise 'Name should be at least 3 characters long' if name.length < Settings::NAME_MIN_LENGTH
      raise "Name shouldn't be more than 20 characters long" if name.length > Settings::NAME_MAX_LENGTH
    end

    def self.validate_guess(guess)
      raise "Guess shouldn't be empty" if guess.empty?
      raise 'Guess should be 4 characters' if guess.length < Settings::GUESS_LENGTH
      raise 'Guess shouldnt be more than 4 characters long' if guess.length > Settings::GUESS_LENGTH
    end

    def self.validate_difficulty(difficulty)
      raise "Input shouldn't be empty" if difficulty.empty?
      return if Settings::DIFFICULTY.keys.include?(difficulty)

      raise "You should enter one of the following options: #{Settings::DIFFICULTY.keys.join(', ')}"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
codebreaker_kirill-1.3.4 lib/codebreaker_kirill/validations.rb